/* ── Homepage styles ────────────────────────────────────────────────────── */

/* ── Hero ─────────────────────────────────────────────────────────────── */
.home-hero {
  background: var(--slate-dark);
  position: relative;
  overflow: hidden;
  padding: 60px 0 50px;
}
.home-hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(176,107,46,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.home-hero-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  text-align: center;
}
@media (min-width: 900px) {
  .home-hero-inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 48px;
  }
  .home-hero-copy { flex: 1; }
  .home-hero-visual { flex-shrink: 0; }
}
.home-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 14px;
  font-family: var(--font-body);
}
.home-h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 52px);
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.home-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 480px;
  margin: 0 auto 24px;
  font-family: var(--font-body);
}
@media (min-width: 900px) {
  .home-sub { margin-left: 0; }
}
.home-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .home-hero-ctas { flex-direction: row; }
}
@media (min-width: 900px) {
  .home-hero-ctas { align-items: flex-start; }
}
.home-cta-primary {
  font-size: 16px;
  padding: 15px 28px;
}
.home-cta-secondary {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 0;
  font-family: var(--font-body);
  transition: color 0.15s;
}
.home-cta-secondary:hover { color: rgba(255,255,255,0.8); }

.home-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (min-width: 900px) {
  .home-trust-pills { justify-content: flex-start; }
}
.home-trust-pill {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-body);
}

/* Hero mockup */
.home-mockup-stack {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}
@media (min-width: 900px) {
  .home-mockup-stack { width: 380px; height: 380px; }
}
.home-mockup-img {
  position: absolute;
  border-radius: 6px;
  object-fit: cover;
}
.home-mockup-main {
  width: 220px;
  height: auto;
  right: 0;
  bottom: 0;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,0.55));
  z-index: 2;
}
.home-mockup-secondary {
  width: 170px;
  height: auto;
  left: 0;
  top: 20px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.40));
  z-index: 1;
  transform: rotate(-3deg);
}

/* ── Section header ───────────────────────────────────────────────────── */
.home-section-head {
  text-align: center;
  margin-bottom: 40px;
}
.home-h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 38px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.home-section-sub {
  font-size: 16px;
  color: var(--ink2);
  font-family: var(--font-body);
}

/* ── How it works ─────────────────────────────────────────────────────── */
.home-how {
  background: var(--cream);
  padding: 64px 0;
}
.home-steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .home-steps-grid { grid-template-columns: repeat(3, 1fr); }
}
.home-step-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 20px;
}
.home-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.home-step-icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 10px; }
.home-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.home-step-body {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.7;
  font-family: var(--font-body);
}

/* ── Product showcase ─────────────────────────────────────────────────── */
.home-products {
  background: var(--cream2);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.home-product-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-bottom: 56px;
}
.home-product-row:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
  .home-product-row {
    flex-direction: row;
    gap: 56px;
  }
  .home-product-row--reverse {
    flex-direction: row-reverse;
  }
}
.home-product-img-wrap { flex-shrink: 0; }
.home-product-img {
  width: 280px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.25));
}
@media (min-width: 900px) {
  .home-product-img { width: 320px; }
}
.home-product-copy { flex: 1; }
.home-product-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.home-product-badge.popular { background: var(--gold); color: #fff; }
.home-product-badge.large { background: var(--slate-dark); color: rgba(255,255,255,0.85); }
.home-product-h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
}
.home-product-body {
  font-size: 15px;
  color: var(--ink2);
  line-height: 1.7;
  margin-bottom: 16px;
  font-family: var(--font-body);
}
.home-product-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
}

/* ── Reviews ──────────────────────────────────────────────────────────── */
.home-reviews {
  background: var(--cream);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.home-review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  color: var(--ink2);
  font-family: var(--font-body);
  margin-top: 8px;
}
.home-review-stars { display: flex; gap: 2px; color: var(--gold2); }
.home-review-stars svg { width: 14px; height: 14px; }
.home-review-summary strong { color: var(--ink); font-size: 18px; }

.home-reviews-scroll {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) {
  .home-reviews-scroll { grid-template-columns: repeat(3, 1fr); }
}
.home-review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 20px;
}
.home-review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.home-review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 2px solid var(--gold2);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.home-review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-body);
}
.home-review-meta {
  font-size: 12px;
  color: var(--ink3);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}
.home-review-verified { color: var(--green); font-weight: 600; }
.home-review-text {
  font-size: 14px;
  color: var(--ink2);
  line-height: 1.65;
  font-family: var(--font-body);
  margin-bottom: 10px;
}
.home-review-product {
  font-size: 11px;
  color: var(--ink3);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-body);
}

/* ── Trust features band ──────────────────────────────────────────────── */
.home-trust-band {
  background: var(--slate-dark);
  padding: 56px 0;
}
.home-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 900px) {
  .home-trust-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; }
}
.home-trust-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 18px 14px;
  text-align: center;
}
.home-trust-icon { width: 32px; height: 32px; display: block; color: var(--gold2); margin: 0 auto 10px; }
.home-trust-item strong {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-body);
}
.home-trust-item p {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  font-family: var(--font-body);
  margin: 0;
}

/* ── Final CTA ────────────────────────────────────────────────────────── */
.home-final-cta {
  background: var(--cream2);
  padding: 72px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.home-final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.home-final-sub {
  font-size: 16px;
  color: var(--ink2);
  font-family: var(--font-body);
}
.home-final-meta {
  font-size: 13px;
  color: var(--ink3);
  font-family: var(--font-body);
}
