/* =============================================
   WHY CHOOSE US — PAGE-SPECIFIC STYLES
   (Design tokens inherited from styles.css)
   ============================================= */

/* ── Breadcrumb for Page Hero ───────────────── */
/* Breadcrumb uses shared .hero-breadcrumb in styles.css */

/* ── Global Section Padding and Alternating Colors ── */
.partner-section,
.components-section,
.professionals-section,
.subsidy-section,
.sustainability-section,
.why-choose-faq-section {
  padding: 50px 0;
  background-color: var(--brand-light-gray);
  border-top: 1px solid rgba(13, 40, 90, 0.07);
  box-sizing: border-box;
}

.affordable-section,
.customized-solutions-section,
.services-process-section,
.safety-section,
.why-choose-cta-section {
  padding: 50px 0;
  background-color: var(--brand-light-gray);
  border-top: 1px solid rgba(13, 40, 90, 0.07);
  box-sizing: border-box;
}

/* ── Section Cards (unified container cards) ───────── */
.section-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  padding: 40px;
  position: relative;
  box-sizing: border-box;
}

/* ── Section 1: More Than Solar Installation ──── */
.partner-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  border: 1px solid rgba(13, 40, 90, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.partner-top-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  align-items: stretch;
  min-height: 180px;
}

.partner-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.partner-header-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.partner-number-badge {
  background: var(--brand-navy);
  color: #FFFFFF;
  font-size: 1.4rem;
  font-weight: 800;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(13, 40, 90, 0.25);
  flex-shrink: 0;
}

.partner-title-area {
  display: flex;
  flex-direction: column;
}

.partner-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.partner-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0;
}

.partner-desc-paragraphs p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--brand-dark-gray);
  margin-bottom: 8px;
}

.partner-desc-paragraphs p:last-child {
  margin-bottom: 0;
}

/* Right: Image column with fade overlay */
.partner-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
}

.partner-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.partner-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 25%);
  pointer-events: none;
}

.partner-expect-title {
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.partner-expect-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.expect-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.expect-list-item i {
  color: var(--brand-green);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.affordable-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  border: 1px solid rgba(13, 40, 90, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.affordable-top-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  align-items: stretch;
  min-height: 180px;
}

.affordable-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.affordable-header-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.affordable-title-area {
  display: flex;
  flex-direction: column;
}

.affordable-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.affordable-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0;
}

.affordable-desc-paragraphs p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--brand-dark-gray);
  margin-bottom: 8px;
}

.affordable-desc-paragraphs p:last-child {
  margin-bottom: 0;
}

.affordable-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
}

.affordable-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.affordable-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 25%);
  pointer-events: none;
}

.affordable-benefits-title {
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.affordable-benefits-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.benefit-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.benefit-list-item i {
  color: var(--brand-green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.affordable-benefits-note {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--brand-navy);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 0;
  border-top: 1px solid rgba(13, 40, 90, 0.08);
  padding-top: 12px;
}

.components-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  border: 1px solid rgba(13, 40, 90, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.components-top-row {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 0;
  align-items: stretch;
  min-height: 180px;
}

.components-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.components-header-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.components-title-area {
  display: flex;
  flex-direction: column;
}

.components-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.components-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0;
}

.components-desc-paragraphs p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--brand-dark-gray);
  margin-bottom: 8px;
}

.components-desc-paragraphs p:last-child {
  margin-bottom: 0;
}

.components-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
}

.components-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.components-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 25%);
  pointer-events: none;
}

.components-qa-title {
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.components-qa-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.qa-item-card {
  background: rgba(13, 40, 90, 0.015);
  border: 1px solid rgba(13, 40, 90, 0.05);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.qa-item-card:hover {
  transform: translateY(-2px);
  background: rgba(13, 40, 90, 0.03);
  box-shadow: 0 6px 15px rgba(13, 40, 90, 0.05);
}

.qa-item-card:last-child {
  grid-column: span 2;
}

.qa-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--brand-navy);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: #FFFFFF;
  flex-shrink: 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.qa-item-card:hover .qa-item-icon {
  background-color: var(--brand-navy);
  color: #FFFFFF;
}

.qa-item-content {
  display: flex;
  flex-direction: column;
}

.qa-item-card h5 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin: 0 0 2px 0;
  line-height: 1.3;
}

.qa-item-card p {
  font-size: 0.7rem;
  color: var(--brand-dark-gray);
  line-height: 1.35;
  margin: 0;
}

/* ── Section 4: Customized Solutions Grid ────────── */
.customized-two-col-layout {
  display: grid;
  grid-template-columns: 1fr 2.8fr;
  gap: 30px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  border: 1px solid rgba(13, 40, 90, 0.08);
  padding: 40px;
  align-items: stretch;
  box-sizing: border-box;
}

.customized-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.customized-header-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.customized-title-area {
  display: flex;
  flex-direction: column;
}

.customized-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.customized-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0;
}

.customized-desc-paragraphs p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--brand-dark-gray);
  margin-bottom: 16px;
}

.customized-desc-paragraphs p:last-child {
  margin-bottom: 0;
}

.customized-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 769px) {
  .customized-solutions-grid .solution-item-card:nth-child(5) {
    grid-column: span 2;
    margin: 0 auto;
    width: 100%;
    max-width: calc(50% - 12px);
  }
}

.solution-item-card {
  background: #FFFFFF;
  border: 1px solid rgba(13, 40, 90, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 40, 90, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
}

.solution-item-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(13, 40, 90, 0.12);
  border-color: rgba(13, 40, 90, 0.15);
}

.solution-item-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.solution-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.solution-item-card:hover .solution-item-image img {
  transform: scale(1.05);
}

.solution-item-content {
  padding: 16px 18px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.solution-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-top: -38px;
  margin-bottom: 14px;
  border: 3px solid #FFFFFF;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.solution-item-content h5 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.solution-item-content p {
  font-size: 0.85rem;
  color: var(--brand-dark-gray);
  line-height: 1.45;
  margin: 0;
}

.badge-navy {
  background: var(--brand-navy);
}

.badge-green {
  background: var(--brand-green);
}

.badge-orange {
  background: var(--brand-orange);
}

/* ── Section 5: Experienced Professionals You Can Trust ──────── */
.professionals-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  border: 1px solid rgba(13, 40, 90, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.professionals-top-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  align-items: stretch;
  min-height: 180px;
}

.professionals-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.professionals-header-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.professionals-title-area {
  display: flex;
  flex-direction: column;
}

.professionals-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.professionals-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0;
}

.professionals-desc-paragraphs p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--brand-dark-gray);
  margin-bottom: 8px;
}

.professionals-desc-paragraphs p:last-child {
  margin-bottom: 0;
}

.professionals-helps-title {
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.professionals-helps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.helps-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.helps-item:last-child {
  grid-column: span 2;
}

.helps-item i {
  color: var(--brand-navy);
  font-size: 1rem;
  flex-shrink: 0;
}

.professionals-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
}

.professionals-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.professionals-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 25%);
  pointer-events: none;
}

/* ── Section 6: A Hassle-Free Solar Journey ────────── */
.process-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  border: 1px solid rgba(13, 40, 90, 0.08);
  padding: 40px;
  box-sizing: border-box;
  width: 100%;
}

.process-tagline {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.process-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0 0 15px;
}

.process-desc-paragraphs {
  margin-bottom: 35px;
}

.process-desc-paragraphs p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--brand-dark-gray);
  margin-bottom: 8px;
}

.process-desc-paragraphs p:last-child {
  margin-bottom: 0;
}

.process-timeline-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.process-timeline-node {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.node-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.node-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(13, 40, 90, 0.03);
  border: 1px solid rgba(13, 40, 90, 0.08);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 12px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.process-timeline-node:hover .node-icon {
  transform: translateY(-3px);
  background-color: var(--brand-navy);
  color: #FFFFFF;
}

.node-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 6px;
}

.node-desc {
  font-size: 0.75rem;
  color: var(--brand-dark-gray);
  line-height: 1.4;
  margin: 0;
  max-width: 170px;
}

.timeline-arrow {
  color: rgba(13, 40, 90, 0.3);
  font-size: 1rem;
  margin-top: -65px;
}

.subsidy-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  border: 1px solid rgba(13, 40, 90, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.subsidy-top-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  align-items: stretch;
  min-height: 180px;
}

.subsidy-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.subsidy-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.subsidy-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0 0 12px;
}

.subsidy-desc-paragraphs p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--brand-dark-gray);
  margin-bottom: 8px;
}

.subsidy-desc-paragraphs p:last-child {
  margin-bottom: 0;
}

.subsidy-support-title {
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.subsidy-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.support-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.support-list-item i {
  color: var(--brand-green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.subsidy-disclaimer-box {
  margin-top: 20px;
  background: rgba(13, 40, 90, 0.02);
  border: 1px solid rgba(13, 40, 90, 0.06);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.disclaimer-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 40, 90, 0.05);
  color: var(--brand-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.disclaimer-text {
  font-size: 0.72rem;
  line-height: 1.4;
  color: var(--brand-navy);
  margin: 0;
}

.subsidy-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
}

.subsidy-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.subsidy-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 25%);
  pointer-events: none;
}

.safety-card {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.06);
  border: 1px solid rgba(13, 40, 90, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.safety-top-row {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0;
  align-items: stretch;
  min-height: 180px;
}

.safety-text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.safety-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
  display: block;
}

.safety-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--brand-navy);
  line-height: 1.25;
  margin: 0 0 12px;
}

.safety-desc-paragraphs p {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--brand-dark-gray);
  margin-bottom: 8px;
}

.safety-desc-paragraphs p:last-child {
  margin-bottom: 0;
}

.safety-support-title {
  font-weight: 700;
  color: var(--brand-navy);
  margin-top: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.75rem;
}

.safety-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}

.safety-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-navy);
}

.safety-list-item i {
  color: var(--brand-green);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.safety-bottom-note {
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--brand-navy);
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 0;
}

.safety-image-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 180px;
  overflow: hidden;
}

.safety-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.safety-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 25%);
  pointer-events: none;
}

/* ── Section 9: CTA Difference Banner ───────────────────────── */
.cta-banner-card {
  background: var(--brand-navy);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(13, 40, 90, 0.2);
  padding: 40px;
  box-sizing: border-box;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.cta-banner-image-wrap {
  width: 100%;
  height: 250px;
  border-radius: 18px;
  overflow: hidden;
}

.cta-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-banner-text-wrap {
  display: flex;
  flex-direction: column;
}

.cta-banner-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 15px;
}

.cta-banner-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

.cta-banner-buttons {
  display: flex;
  gap: 15px;
}

.btn-cta-orange {
  background: var(--brand-orange);
  color: #FFFFFF;
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-cta-orange:hover {
  background: #E59700;
  transform: translateY(-2px);
}

.btn-cta-white {
  background: #FFFFFF;
  color: var(--brand-navy);
  border: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 14px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-cta-white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

.cta-banner-quick-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border-radius: 14px;
  padding: 16px 20px;
  margin-top: 35px;
  gap: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.cta-banner-quick-links a {
  color: var(--brand-navy);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cta-banner-quick-links a:hover {
  color: var(--brand-green);
}

.cta-banner-quick-links a i {
  color: var(--brand-navy);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.cta-banner-quick-links a:hover i {
  color: var(--brand-green);
}

/* ── Viewport compression overrides for desktop ──────────────── */
@media (min-width: 1025px) {

  /* Match layout standard header spacing override */
  .solutions-detail-header {
    margin-bottom: 20px;
  }
}

/* ── Responsive styling for tablets and smaller viewports ──────────────── */
@media (max-width: 1024px) {

  .partner-section,
  .affordable-section,
  .components-section,
  .customized-solutions-section,
  .professionals-section,
  .services-process-section,
  .subsidy-section,
  .safety-section,
  .why-choose-faq-section {
    padding: 40px 0;
  }

  /* Make Section 1, Section 2, Section 3, Section 5, Section 7, and Section 8 collapse to vertical */
  .partner-top-row,
  .affordable-top-row,
  .components-top-row,
  .professionals-top-row,
  .subsidy-top-row,
  .safety-top-row {
    grid-template-columns: 1fr;
  }

  .partner-text-card,
  .affordable-text-card,
  .components-text-card,
  .professionals-text-card,
  .subsidy-text-card,
  .safety-text-card {
    padding: 32px 28px 24px;
  }

  .partner-image-card,
  .affordable-image-card,
  .components-image-card,
  .professionals-image-card,
  .subsidy-image-card,
  .safety-image-card {
    height: 280px;
    min-height: 280px;
  }

  .partner-expect-list,
  .affordable-benefits-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 20px;
  }

  .customized-two-col-layout {
    grid-template-columns: 1fr;
    padding: 30px 24px;
    gap: 30px;
  }

  .components-qa-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .customized-solutions-grid {
    gap: 20px;
  }

  .process-timeline-wrapper {
    flex-direction: column;
    gap: 25px;
  }

  .timeline-arrow {
    transform: rotate(90deg);
    margin-top: 0;
  }

  .cta-banner-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cta-banner-image-wrap {
    height: 250px;
  }

  .cta-banner-quick-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ── Responsive styling for mobile viewports ──────────────── */
@media (max-width: 768px) {

  .expect-grid,
  .expect-grid-simple,
  .partner-expect-list,
  .affordable-benefits-list,
  .components-qa-list,
  .professionals-helps-grid,
  .subsidy-support-grid,
  .safety-support-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .customized-solutions-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }



  .partner-expect-list,
  .affordable-benefits-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .qa-item-card:last-child {
    grid-column: span 1;
  }

  .helps-item:last-child {
    grid-column: span 1;
  }

  .partner-title,
  .affordable-title,
  .components-title,
  .customized-title,
  .professionals-title,
  .subsidy-title,
  .safety-title {
    font-size: 1.4rem;
  }

  .partner-expect-card,
  .affordable-benefits-card,
  .components-qa-card,
  .professionals-helps-block,
  .subsidy-support-block,
  .safety-support-block {
    padding: 24px 20px;
  }

  .section-card {
    padding: 24px;
  }

  .cta-banner-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-cta-orange,
  .btn-cta-white {
    width: 100%;
    justify-content: center;
  }

  .process-timeline-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-left: 45px;
    gap: 35px;
    margin-top: 25px;
  }

  /* Vertical timeline line */
  .process-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 15px;
    bottom: 15px;
    width: 2px;
    background: rgba(13, 40, 90, 0.15);
  }

  .process-timeline-node {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    position: relative;
  }

  .node-number {
    position: absolute;
    left: -45px;
    top: 0;
    width: 32px;
    height: 32px;
    box-shadow: 0 0 0 4px #FFFFFF;
    margin-bottom: 0;
  }

  .timeline-arrow {
    display: none !important;
  }

  .node-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
    width: auto;
    height: auto;
    background: transparent !important;
    border: none !important;
    color: var(--brand-navy);
    padding: 0;
  }

  .node-title {
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .node-desc {
    max-width: 100%;
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

@media (max-width: 576px) {

  .partner-section,
  .affordable-section,
  .components-section,
  .customized-solutions-section,
  .professionals-section,
  .services-process-section,
  .subsidy-section,
  .safety-section,
  .why-choose-faq-section {
    padding: 40px 0;
  }

  .partner-image-card,
  .affordable-image-card,
  .components-image-card,
  .professionals-image-card,
  .subsidy-image-card,
  .safety-image-card,
  .professionals-section .split-card-image-wrap {
    height: 220px;
  }
}