/* ============================================================
   partnHR — home.css
   Homepage-specific sections
   Requires: main.css
   ============================================================ */

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  padding: 80px 48px 72px;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  margin-bottom: 22px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-h1 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.hero-h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.78;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 470px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -0.04em;
}
.hero-stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero card stack */
.hero-card-stack { display: flex; flex-direction: column; gap: 12px; }
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.hero-card:hover {
  border-color: var(--gold-border-h);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
}
.hero-card-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.hero-card-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.hero-card-meta {
  font-size: 0.67rem;
  color: var(--text-light);
  font-weight: 400;
}

/* ── TRUST STRIP ────────────────────────────────────────────── */
.trust-strip { background: var(--navy-deep); }
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(200,128,26,0.12);
  max-width: 1280px;
  margin: 0 auto;
}
.trust-item {
  padding: 44px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(255,255,255,0.025); }
.trust-num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.trust-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 6px;
}
.trust-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.24);
  line-height: 1.6;
  font-weight: 300;
}

/* ── ESA FEATURE ────────────────────────────────────────────── */
.esa-feature {
  background: var(--cream);
  padding: 80px 48px;
  border-bottom: 1px solid var(--border);
}
.esa-feature-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.esa-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803D;
  background: #F0FDF4;
  border: 1px solid rgba(21,128,61,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.esa-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.esa-feature-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  transition: border-color 0.2s;
}
.esa-feature-item:hover { border-color: var(--gold-border-h); }
.esa-feature-icon { font-size: 1.2rem; margin-bottom: 8px; }
.esa-feature-item-title { font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.01em; }
.esa-feature-item-desc { font-size: 0.75rem; color: var(--text-mid); line-height: 1.58; font-weight: 300; }

/* ── SEVERANCE FEATURE ──────────────────────────────────────── */
.sev-feature { background: var(--cream-dark); padding: 80px 48px; border-bottom: 1px solid var(--border); }
.sev-feature-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sev-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.sev-tag {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--white);
  color: var(--text-mid);
  border: 1px solid var(--border-dark);
}
.sev-actions { display: flex; gap: 12px; align-items: center; }
.sev-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.sev-preview-header {
  background: var(--navy);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sev-preview-header-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.sev-preview-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-left: 4px;
}
.sev-preview-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 20px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.84rem;
  color: var(--text-mid);
}
.sev-preview-row:last-of-type { border-bottom: none; }
.sev-preview-row strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.sev-preview-highlight {
  background: var(--navy);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sev-preview-highlight-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.sev-preview-highlight strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  display: block;
}
.sev-preview-months {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: -0.01em;
}
.sev-preview-note {
  font-size: 0.78rem;
  color: var(--text-mid);
  line-height: 1.55;
  padding: 14px 20px;
  background: var(--gold-pale);
  border-top: 1px solid var(--gold-border);
}
.sev-preview-note strong { color: var(--navy); font-weight: 600; }

/* ── ABOUT STRIP ────────────────────────────────────────────── */
.about-strip {
  background: var(--gold-pale);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
  padding: 72px 48px;
}
.about-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: center;
}
.about-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-top: 10px;
}
.about-title em { font-style: italic; color: var(--gold); font-weight: 400; }
.about-body {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.82;
  font-weight: 300;
  margin-bottom: 16px;
}
.about-body strong { color: var(--navy); font-weight: 600; }

/* ── HOME BLOG SECTION ──────────────────────────────────────── */
.home-blog-section { background: var(--white); padding: 80px 48px; }
.home-blog-section-inner { max-width: 1280px; margin: 0 auto; }
.home-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.home-blog-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
}
.blog-card-featured {
  background: var(--navy-deep);
  border-color: rgba(255,255,255,0.08);
}
.blog-card-featured:hover { border-color: rgba(200,128,26,0.3); }
.blog-card-featured .post-cat { color: var(--gold-light); }
.blog-card-featured h3.post-title { color: var(--white); font-size: 1.25rem; }
.blog-card-featured .post-excerpt { color: rgba(255,255,255,0.45); }
.blog-card-featured .post-meta { color: rgba(255,255,255,0.28); }
.blog-card-featured .meta-dot { background: rgba(255,255,255,0.15); }
.blog-card-featured .post-card-img { background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.06); }
.blog-side-stack { display: flex; flex-direction: column; gap: 16px; }

/* ── HOME TOOLS SECTION ─────────────────────────────────────── */
.home-tools-section { background: var(--cream-dark); padding: 80px 48px; border-top: 1px solid var(--border); }
.home-tools-section-inner { max-width: 1280px; margin: 0 auto; }
.home-tools-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
}
.home-tools-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .home-tools-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 72px 24px 56px; gap: 40px; }
  .hero-card-stack { display: none; }
  .trust-strip-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 24px; }
  .trust-item:last-child { border-bottom: none; }
  .esa-feature, .sev-feature { padding: 56px 24px; }
  .esa-feature-inner, .sev-feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-strip { padding: 56px 24px; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 28px; }
  .home-blog-section, .home-tools-section { padding: 56px 24px; }
  .home-blog-header, .home-tools-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .home-blog-grid { grid-template-columns: 1fr; }
  .home-tools-grid { grid-template-columns: 1fr; }
  .esa-features-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { gap: 20px; }
  .esa-features-grid { grid-template-columns: 1fr; }
}
