/* ============================================================
   home.css — Homepage-specific styles only
   Global styles (nav, footer, buttons, etc) are in global.css
   ============================================================ */

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 56px 80px; overflow: hidden;
}
.hero-image {
  position: absolute; inset: 0;
  background-image: url('../images/hero/hero-home.jpg');
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(20,20,20,0.78) 0%, rgba(30,30,30,0.65) 50%, rgba(30,30,30,0.35) 100%);
}
.hero-inner {
  max-width: var(--max-width); margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 420px; gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.1; color: var(--white);
  font-weight: 600; margin-bottom: 28px; letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--amber); font-weight: 400; }
.hero-sub {
  font-size: 1rem; color: rgba(255,255,255,0.9);
  line-height: 1.8; margin-bottom: 44px; max-width: 480px; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero stats card */
.hero-stats {
  background: rgba(20,20,20,0.75);
  border: 1px solid rgba(184,206,202,0.2);
  border-radius: 4px; padding: 40px; backdrop-filter: blur(16px);
}
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.stat-row:last-child { margin-bottom: 0; }
.stat-number {
  font-family: var(--font-serif); font-size: 2.8rem; font-weight: 600;
  color: var(--amber); line-height: 1; margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 400;
}
.stat-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.08); margin: 28px 0; }
.hero-quote {
  font-family: var(--font-serif); font-style: italic; font-size: 1.05rem;
  color: rgba(255,255,255,0.55); line-height: 1.6;
  border-left: 2px solid var(--sage); padding-left: 18px;
}

/* ── TRUST PILLARS ── */
.trust-section { background: var(--cream); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; margin-top: 56px; }
.trust-card {
  background: var(--warm-white); padding: 40px 32px;
  border-top: 3px solid transparent; transition: border-color 0.2s;
}
.trust-card:hover { border-color: var(--sage); }
.trust-card-number {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 600;
  color: var(--sage-light); margin-bottom: 16px; line-height: 1; transition: color 0.2s;
}
.trust-card:hover .trust-card-number { color: var(--sage); }
.trust-card h3 {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 12px; line-height: 1.3;
}
.trust-card p { font-size: 0.85rem; color: var(--body-text); line-height: 1.75; font-weight: 300; }

/* ── SERVICES & PRICING ── */
.services-pricing-section { background: var(--warm-white); }
.section-label--gold { color: var(--charcoal); }
.section-label--gold::before { background: var(--amber); }

.shevitsa-divider {
  height: 10px;
  width: 100%;
  background-image:
    repeating-linear-gradient(45deg, var(--amber) 0 2px, transparent 2px 11px),
    repeating-linear-gradient(-45deg, var(--amber) 0 2px, transparent 2px 11px);
  background-position: center;
  background-repeat: repeat-x;
  opacity: 0.85;
}

.sp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.sp-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(242,201,76,0.45);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
}
.sp-card h3 {
  font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 12px; line-height: 1.3;
}
.sp-card p {
  font-size: 0.88rem; color: var(--body-text); line-height: 1.75;
  font-weight: 300; margin-bottom: 24px; flex-grow: 1;
}
.sp-card--featured {
  border: 1.5px solid var(--amber);
  box-shadow: 0 6px 24px rgba(242,201,76,0.25);
}
.sp-badge {
  position: absolute; top: -14px; left: 28px;
  background: var(--amber); color: var(--charcoal);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 3px;
}
.btn-gold {
  display: inline-block; text-align: center;
  background: var(--amber); color: var(--charcoal);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 13px 20px; border-radius: 4px;
  text-decoration: none; transition: background 0.2s;
}
.btn-gold:hover { background: #E5BC3F; }

/* ── PROBLEM / SOLUTION ── */
.problem-section { background: var(--charcoal); }
.problem-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.problem-list { list-style: none; margin-top: 32px; }
.problem-list li {
  padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem; color: rgba(255,255,255,0.65);
  display: flex; align-items: center; gap: 14px; font-weight: 300;
}
.problem-list li::before { content: '—'; color: var(--sage); font-weight: 600; flex-shrink: 0; }
.solution-side { padding-top: 8px; }
.solution-text { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 24px; font-weight: 300; }

/* ── HOW IT WORKS ── */
.how-section { background: var(--cream); }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; }
.step-card { background: var(--warm-white); padding: 40px 28px; }
.step-num {
  font-family: var(--font-serif); font-size: 3.2rem; font-weight: 400;
  color: var(--sage-light); line-height: 1; margin-bottom: 20px;
}
.step-card h3 {
  font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 12px; line-height: 1.3;
}
.step-card p { font-size: 0.84rem; color: var(--body-text); line-height: 1.75; font-weight: 300; }

/* ── AREAS ── */
.areas-section { background: var(--warm-white); }
.areas-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 56px; }
.area-chip {
  padding: 20px 24px; border: 1.5px solid rgba(184,206,202,0.5);
  border-radius: 4px; background: var(--white);
  font-family: var(--font-serif); font-size: 1rem; font-weight: 600;
  color: var(--charcoal); transition: border-color 0.2s, background 0.2s; cursor: pointer;
  text-decoration: none; display: block;
}
.area-chip:hover { border-color: var(--sage); background: rgba(184,206,202,0.08); }
.area-chip span { display: block; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 300; color: var(--mid); margin-top: 4px; }
.area-chip--ghost { border-style: dashed; border-color: rgba(184,206,202,0.4); color: var(--mid); font-size: 0.88rem; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .hero { padding: 100px 20px 60px; min-height: auto; align-items: flex-start; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
  .hero-right { display: none; }

  .trust-grid { grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 36px; }
  .trust-card { padding: 28px 20px; }

  .sp-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }
  .sp-card { padding: 26px 22px; }

  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .solution-side { padding-top: 0; }

  .steps-grid { grid-template-columns: 1fr 1fr; gap: 2px; margin-top: 36px; }
  .step-card { padding: 28px 20px; }

  .areas-grid { grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 36px; }
  .area-chip { padding: 16px; font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}
