/* ============================================
   HOME PAGE — Page-specific styles
   ============================================ */

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(45, 49, 66, 0.72) 0%,
    rgba(45, 49, 66, 0.45) 60%,
    rgba(74, 124, 89, 0.30) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero__content h1 {
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- Intro --- */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro__text h2 { margin-bottom: 4px; }
.intro__image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(45,49,66,0.15);
  object-fit: cover;
  aspect-ratio: 4/3;
}

/* --- Pillars --- */
.pillars__header { margin-bottom: 52px; }
.pillars__header h2 { margin-bottom: 4px; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* --- Differentiator --- */
.differentiator {
  position: relative;
  overflow: hidden;
}
.differentiator__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.differentiator__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.differentiator__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(45, 49, 66, 0.88) 0%,
    rgba(45, 49, 66, 0.70) 50%,
    rgba(45, 49, 66, 0.30) 100%
  );
}
.differentiator__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 520px;
}
.differentiator__box {
  max-width: 560px;
  color: var(--white);
}
.differentiator__box h2 { color: var(--white); margin-bottom: 4px; }
.differentiator__box p  { color: rgba(255,255,255,0.85); margin-bottom: 1rem; }

/* --- Trust Bar --- */
.trust-bar { border-top: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark); }
.trust-bar__label { display: block; margin-bottom: 20px; }
.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 0;
  list-style: none;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal-light);
}
.trust-bar__list li { padding: 0 20px; }
.trust-bar__dot {
  width: 5px; height: 5px;
  background: var(--amber);
  border-radius: 50%;
  padding: 0 !important;
  flex-shrink: 0;
}

/* --- Closing CTA --- */
.closing-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}
.closing-cta h2 { color: var(--white); margin-bottom: 4px; }
.closing-cta p  { color: rgba(255,255,255,0.82); font-size: 1.05rem; }

/* --- Responsive --- */
@media (max-width: 960px) {
  .intro__grid { grid-template-columns: 1fr; gap: 40px; }
  .intro__image { order: -1; }
  .pillars__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { min-height: 70vh; }
  .differentiator__content { min-height: 420px; }
}
@media (max-width: 640px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { text-align: center; }
  .trust-bar__list { gap: 8px 0; font-size: 0.8rem; }
  .trust-bar__list li { padding: 0 12px; }
}
