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

.section-pad-sm { padding: 28px 0; }

/* ---- Hero ---- */
.hero {
  padding: 70px 0 100px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream) 70%, var(--cream-deep) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
.hero h1 { margin-top: 18px; }
.hero-sub {
  margin-top: 22px;
  font-size: 1.12rem;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}
.hero-tagline {
  margin-top: 30px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--teal);
}
.hero-visual { position: relative; }
.hero-arc {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 80%;
  height: 120%;
  background: radial-gradient(circle at 70% 30%, rgba(31,78,74,0.14), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}
.hero-image {
  position: relative;
  z-index: 1;
  border-radius: 18px;
  box-shadow: var(--shadow-lift);
}

/* ---- Trust strip ---- */
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; padding: 20px 0; }
.trust-label { font-size: 0.82rem; color: var(--ink-soft); font-weight: 500; }
.trust-tags { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  opacity: 0.55;
}

/* ---- Pillars ---- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pillars-grid { grid-template-columns: 1fr; }
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: var(--gold);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  margin-bottom: 20px;
}
.pillar-icon svg { width: 24px; height: 24px; }
.pillar-card h3 { margin-bottom: 10px; }
.pillar-card p { font-size: 0.92rem; }

/* ---- Sonder explainer ---- */
.sonder-explainer { background: var(--cream-deep); }
.sonder-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) {
  .sonder-grid { grid-template-columns: 1fr; gap: 36px; }
}
.sonder-copy h2 { margin-top: 14px; margin-bottom: 20px; }
.sonder-copy p { margin-bottom: 14px; }
.sonder-visual img {
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

/* ---- Who We Serve / Slideshow ---- */
.poster-slideshow {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.slide-viewport {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  aspect-ratio: 4 / 5;
}
.slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}
.slide {
  min-width: 100%;
  flex-shrink: 0;
  height: 100%;
}
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: background 0.2s ease, color 0.2s ease;
}
.slide-prev { left: -22px; }
.slide-next { right: -22px; }
.slide-prev:hover, .slide-next:hover { background: var(--teal); color: var(--white); }
@media (max-width: 520px) {
  .slide-prev { left: 8px; }
  .slide-next { right: 8px; }
}
.slide-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}
.slide-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.slide-dot.active { background: var(--gold); transform: scale(1.25); }

/* ---- Pricing teaser ---- */
.pricing-teaser { background: var(--cream-deep); }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 680px) {
  .teaser-grid { grid-template-columns: 1fr; }
}
.teaser-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 36px;
  text-align: center;
}
.teaser-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}
.teaser-card.featured p,
.teaser-card.featured .teaser-price { color: var(--white); }
.teaser-price {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--navy);
  margin: 14px 0 4px;
}
.teaser-price span {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.teaser-card.featured .teaser-price span { color: rgba(255,255,255,0.6); }

/* ---- Final CTA ---- */
.final-cta { background: var(--teal); }
.final-cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.final-cta h2 { color: var(--white); }
.final-cta p { color: rgba(255,255,255,0.82); margin: 18px 0 32px; font-size: 1.05rem; }

.site-header.scrolled { box-shadow: 0 2px 16px rgba(22,36,63,0.08); }
