/* ─── Hero ─── */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  padding-top: 72px;
  background: var(--neutral);
  text-align: center;
  position: relative;
}

/* Split hero variant */
.hero--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
  max-height: 920px;
  background: var(--neutral);
  text-align: left;
  padding-top: 72px;
  align-items: stretch;
}

.hero--split .hero-content {
  align-items: flex-start;
  padding: 72px 56px 72px 48px;
  max-width: 100%;
  text-align: left;
  justify-content: center;
}

.hero--split .hero-sub {
  margin: 0 0 28px;
}

.hero--split .hero-ctas {
  justify-content: flex-start;
}

.hero--split .hero-human-badge {
  text-align: left;
  max-width: 100%;
}

.hero-photo-panel {
  overflow: hidden;
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 32px;
  max-width: 720px;
}

.hero-content h1 { margin: 8px 0 20px; }
.hero-content h1 em { font-style: italic; color: var(--secondary); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

.hero-human-badge {
  background: var(--white);
  border-left: 3px solid var(--secondary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin-bottom: 36px;
  max-width: 480px;
  text-align: left;
}

.hero-human-badge p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─── Differentiator ─── */
.differentiator { }

.diff-inner {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.diff-lead {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 14px;
}

.diff-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar {
  text-align: center;
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-dark);
}

.pillar-icon {
  color: var(--secondary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
}

.pillar-icon svg {
  stroke: var(--secondary);
}

.pillar h4 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.pillar p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ─── How It Works ─── */
.section-header { margin-bottom: 56px; }
.section-header h2 { margin-top: 8px; }

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px;
  align-items: start;
  max-width: 960px;
  margin: 0 auto 48px;
}

.step-connector {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  margin: 0 auto;
  margin-top: 24px;
  opacity: 0.5;
}

.step { text-align: center; }

.step-num {
  font-family: var(--font-headline);
  font-size: 3rem;
  font-weight: 300;
  color: var(--secondary);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.hiw-cta { margin-top: 16px; }
.hiw-cta .text-muted { font-size: 0.9rem; font-style: italic; }

/* ─── Photo Break ─── */
.photo-break {
  position: relative;
  height: 480px;
  overflow: hidden;
}

.photo-break-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.6);
}

.photo-break-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
}

.inline-quote {
  font-family: var(--font-headline);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  text-align: center;
  max-width: 640px;
  line-height: 1.35;
}

/* ─── Testimonials ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--neutral-dark);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-headline);
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.25;
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

.testimonial-card blockquote {
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-card figcaption {
  font-family: var(--font-label);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--secondary);
}

/* ─── Footer CTA ─── */
.footer-cta {
  padding: 96px 0;
  background: var(--primary-muted);
}

.footer-cta h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0; }
.footer-cta p { font-size: 1rem; color: var(--text-muted); max-width: 480px; margin: 0 auto; }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero-content { padding: 60px 40px 60px 32px; }
  .diff-pillars { gap: 20px; }
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero--split { grid-template-columns: 1fr; min-height: auto; }
  .hero--split .hero-content { padding: 48px 20px; text-align: center; align-items: center; }
  .hero--split .hero-ctas { justify-content: center; }
  .hero-photo-panel { height: 52vw; min-height: 260px; }
  .hero-content { max-width: 100%; padding: 48px 20px; }
  .diff-pillars { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .photo-break { height: 320px; }
}
