/* HR Audit Co. — Shared Stylesheet
   Aesthetic: refined editorial minimalism
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #1A1A1A;
  --ink-2: #3A3A3A;
  --muted: #5F5E5A;
  --soft: #888780;
  --cream: #FAFAF7;
  --warm-gray: #F1EFE8;
  --border: #E8E6DF;
  --border-strong: #D3D1C7;
  --accent: #854F0B;
  --accent-soft: #FAEEDA;
  --blue: #0C447C;
  --blue-soft: #E6F1FB;
  --red: #A32D2D;
  --red-soft: #FCEBEB;
  --amber: #EF9F27;
  --amber-soft: #FAEEDA;
  --green: #3B6D11;
  --green-soft: #EAF3DE;
  --max-width: 1180px;
  --gutter: 48px;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; padding: 0;
  font-family: var(--sans);
  font-size: 16px; line-height: 1.6;
  color: var(--ink); background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* NAV */
.nav {
  background: #ffffff;
  border-bottom: 0.5px solid var(--border);
  padding: 18px 0;
  position: sticky; top: 0; z-index: 100;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
}
.nav-brand-mark {
  width: 24px; height: 24px;
  background: var(--ink); border-radius: 5px;
  color: white; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 500; font-size: 13px; line-height: 1;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13.5px; color: var(--muted);
  transition: color 0.15s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important; color: white !important;
  padding: 9px 16px; border-radius: 7px;
  font-size: 13.5px; font-weight: 500;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover { background: #000 !important; }
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-mobile-menu { display: none; }

/* SHARED */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }
.eyebrow {
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 16px;
}
h1, h2, h3 {
  font-family: var(--serif); font-weight: 500;
  letter-spacing: -0.015em; color: var(--ink);
  margin: 0; line-height: 1.15;
}
h1 { font-size: 52px; }
h2 { font-size: 36px; }
h3 { font-size: 22px; font-weight: 600; letter-spacing: -0.005em; }
p { margin: 0 0 16px; line-height: 1.65; }
.lede { font-size: 18px; color: var(--ink-2); line-height: 1.6; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 24px; border-radius: 8px;
  font-size: 14.5px; font-weight: 500; font-family: var(--sans);
  border: 0.5px solid transparent; cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-align: center; white-space: nowrap;
}
.btn-primary { background: var(--ink); color: white; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-light { background: white; color: var(--ink); }
.btn-light:hover { transform: translateY(-1px); }
.btn-ghost { background: transparent; color: white; border-color: #5F5E5A; }
.btn-ghost:hover { border-color: white; }

/* HERO */
.hero { padding: 80px 0 100px; background: var(--cream); }
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-size: 13px; color: var(--muted); margin: 0 0 20px; line-height: 1.5; }
.hero-title { font-size: 58px; line-height: 1.05; margin: 0 0 24px; letter-spacing: -0.02em; }
.hero-title em { font-style: italic; font-weight: 400; }
.hero-sub { font-size: 18px; line-height: 1.55; color: var(--ink-2); margin: 0 0 32px; max-width: 500px; }
.hero-ctas { display: flex; gap: 12px; margin: 0 0 28px; flex-wrap: wrap; }
.hero-trust { font-size: 12px; color: var(--soft); line-height: 1.6; margin: 0; }
.hero-visual { position: relative; height: 440px; }
.report-card {
  position: absolute; background: white;
  border: 0.5px solid var(--border-strong); border-radius: 8px;
  padding: 24px 22px; box-shadow: 0 1px 3px rgba(26, 26, 26, 0.04);
}
.report-card-a { top: 60px; left: 20px; width: 230px; height: 310px; transform: rotate(-5deg); padding: 22px 18px; }
.report-card-b { top: 10px; right: 10px; width: 250px; height: 340px; transform: rotate(4deg); z-index: 2; }
.report-card .mark { width: 32px; height: 3px; background: var(--soft); margin: 0 0 14px; }
.report-card .tiny { font-size: 9px; color: var(--soft); letter-spacing: 0.09em; margin: 0 0 5px; text-transform: uppercase; }
.report-card .title { font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.2; margin: 0 0 20px; letter-spacing: -0.01em; }
.report-card .finding-title { font-size: 11px; font-weight: 600; margin: 0 0 12px; line-height: 1.3; }
.report-card .rule { height: 0.5px; background: var(--border); margin: 0 0 12px; }
.report-card .bars { display: flex; flex-direction: column; gap: 5px; margin: 0 0 14px; }
.report-card .bar { height: 4px; background: var(--border-strong); border-radius: 2px; }
.report-card .callout { padding: 9px 11px; background: var(--amber-soft); border-radius: 5px; }
.report-card .callout .label { font-size: 9px; color: var(--accent); font-weight: 600; margin: 0 0 5px; }
.report-card .callout .bar { background: var(--amber); opacity: 0.5; }
.score-box { background: var(--warm-gray); border-radius: 7px; padding: 10px 12px; margin: 0 0 14px; }
.score-box .score-label { font-size: 9px; color: var(--muted); margin: 0 0 2px; font-weight: 500; }
.score-box .score-line { display: flex; align-items: baseline; gap: 7px; }
.score-box .score-num { font-size: 26px; font-weight: 600; color: var(--ink); font-family: var(--serif); }
.score-box .score-tier { font-size: 10px; color: var(--red); font-weight: 600; }
.finding-list { display: flex; flex-direction: column; gap: 7px; }
.finding-row { display: flex; justify-content: space-between; align-items: center; }
.finding-row span:first-child { font-size: 10px; color: var(--muted); }
.finding-dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-red { background: #E24B4A; }
.dot-amber { background: var(--amber); }
.dot-green { background: #97C459; }

/* SECTIONS */
.section { padding: 88px 0; }
.section-warm { background: var(--warm-gray); }
.section-white { background: white; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.section-intro { max-width: 680px; }
.section h2 { margin-bottom: 20px; }

/* PROBLEM LIST */
.problem-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 40px; max-width: 760px; margin-top: 24px; }
.problem-item { font-size: 14.5px; color: var(--ink-2); padding: 10px 0; border-bottom: 0.5px solid var(--border); position: relative; padding-left: 18px; }
.problem-item::before { content: ""; position: absolute; left: 0; top: 17px; width: 6px; height: 6px; background: var(--red); border-radius: 50%; }

/* THREE-COL */
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.feature-card { background: white; padding: 32px 26px; border-radius: 10px; border: 0.5px solid var(--border); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.feature-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26, 26, 26, 0.05); }
.feature-num { width: 34px; height: 34px; background: var(--blue-soft); color: var(--blue); display: flex; align-items: center; justify-content: center; border-radius: 7px; font-size: 14px; font-weight: 600; margin-bottom: 16px; font-family: var(--serif); }
.feature-card h3 { margin: 0 0 10px; font-size: 17px; font-family: var(--sans); font-weight: 600; letter-spacing: -0.005em; }
.feature-card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0; }

/* STEPS */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.step-label { font-size: 11.5px; font-weight: 600; color: var(--accent); letter-spacing: 0.1em; margin: 0 0 10px; text-transform: uppercase; }
.step h3 { font-family: var(--sans); font-size: 19px; font-weight: 600; margin: 0 0 12px; letter-spacing: -0.005em; }
.step p { font-size: 14.5px; color: var(--muted); line-height: 1.65; margin: 0; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 44px; }
.price-card { background: white; padding: 32px 28px; border-radius: 10px; border: 0.5px solid var(--border); position: relative; }
.price-card.featured { border: 1.5px solid var(--ink); }
.price-badge { position: absolute; top: -11px; left: 28px; background: var(--ink); color: white; padding: 4px 12px; border-radius: 5px; font-size: 10.5px; font-weight: 600; letter-spacing: 0.05em; }
.price-tier { font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; margin: 0 0 14px; }
.price-amount { font-family: var(--serif); font-size: 40px; font-weight: 500; letter-spacing: -0.015em; margin: 0 0 4px; color: var(--ink); line-height: 1; }
.price-amount-note { font-size: 12.5px; color: var(--soft); margin: 0 0 22px; }
.price-for { font-size: 14px; color: var(--ink-2); line-height: 1.55; margin: 0 0 8px; }
.price-includes { margin-top: 20px; padding-top: 18px; border-top: 0.5px solid var(--border); list-style: none; padding-left: 0; }
.price-includes li { font-size: 13.5px; color: var(--muted); padding: 5px 0; position: relative; padding-left: 18px; }
.price-includes li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-left: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent); transform: rotate(-45deg); }
.pricing-fine { text-align: center; margin: 28px 0 0; font-size: 13px; color: var(--muted); }

/* Q&A (self-assessment + FAQ) */
.qa-wrapper { max-width: 780px; margin: 48px auto 0; }
.qa-item { background: white; border-radius: 10px; border: 0.5px solid var(--border); margin-bottom: 16px; overflow: hidden; }
.qa-head { padding: 22px 28px 18px; border-bottom: 0.5px solid var(--border); }
.qa-number { font-family: var(--serif); font-size: 13px; font-weight: 500; color: var(--accent); letter-spacing: 0.04em; margin: 0 0 8px; }
.qa-question { font-family: var(--serif); font-size: 22px; font-weight: 500; line-height: 1.25; letter-spacing: -0.01em; margin: 0; color: var(--ink); }
.qa-body { padding: 22px 28px 26px; }
.qa-body h4 { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); margin: 18px 0 8px; text-transform: none; }
.qa-body h4:first-child { margin-top: 0; }
.qa-body p { font-size: 15px; line-height: 1.7; color: var(--ink-2); margin: 0 0 10px; }
.qa-watch { list-style: none; padding: 0; margin: 0; }
.qa-watch li { font-size: 14px; color: var(--ink-2); padding: 6px 0; padding-left: 18px; position: relative; line-height: 1.55; }
.qa-watch li::before { content: "—"; position: absolute; left: 0; color: var(--soft); }
.qa-tag { display: inline-block; padding: 3px 9px; border-radius: 4px; font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; margin-left: 10px; vertical-align: middle; }
.tag-high { background: var(--red-soft); color: var(--red); }
.tag-moderate { background: var(--amber-soft); color: var(--accent); }
.tag-low { background: var(--green-soft); color: var(--green); }

/* FINAL CTA */
.final-cta { padding: 96px 0; background: #0F0F0F; color: white; text-align: center; }
.final-cta h2 { color: white; font-size: 42px; margin: 0 0 18px; }
.final-cta p { color: #B4B2A9; font-size: 16px; line-height: 1.6; max-width: 560px; margin: 0 auto 36px; }
.final-cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.footer { background: #0A0A0A; color: #888780; padding: 28px 0; font-size: 12px; text-align: center; }
.footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-links { display: flex; gap: 20px; }
.footer a:hover { color: white; }

/* ABOUT */
.about-body { max-width: 720px; margin: 0 auto; }
.about-body p { font-size: 17px; line-height: 1.7; color: var(--ink-2); margin: 0 0 22px; }
.about-body p.lead { font-family: var(--serif); font-size: 24px; line-height: 1.4; color: var(--ink); font-weight: 400; margin-bottom: 32px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin: 56px 0; padding: 40px 0; border-top: 0.5px solid var(--border); border-bottom: 0.5px solid var(--border); }
.stat { text-align: left; }
.stat-num { font-family: var(--serif); font-size: 44px; font-weight: 500; color: var(--ink); line-height: 1; margin: 0 0 8px; letter-spacing: -0.02em; }
.stat-label { font-size: 13px; color: var(--muted); line-height: 1.5; margin: 0; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 900px; margin: 0 auto; align-items: start; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 11px 14px; font-size: 14.5px; font-family: var(--sans);
  border: 0.5px solid var(--border-strong); border-radius: 7px;
  background: white; color: var(--ink); transition: border-color 0.15s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--ink);
}
.form-field textarea { min-height: 120px; resize: vertical; font-family: var(--sans); }
.contact-info h3 { font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); margin: 28px 0 8px; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { font-size: 15px; color: var(--ink); margin: 0; }
.contact-info a { color: var(--accent); font-weight: 500; }

/* PAGE HEADER */
.page-header { padding: 80px 0 60px; background: var(--cream); border-bottom: 0.5px solid var(--border); text-align: center; }
.page-header h1 { font-size: 48px; max-width: 780px; margin: 0 auto 18px; }
.page-header .lede { max-width: 600px; margin: 0 auto; }

/* QUOTE */
.quote-block { max-width: 780px; margin: 0 auto; text-align: center; padding: 64px 0; }
.quote-block .quote { font-family: var(--serif); font-size: 36px; font-weight: 400; font-style: italic; line-height: 1.25; color: var(--ink); margin: 0 0 20px; letter-spacing: -0.01em; }
.quote-block .attr { font-size: 13px; color: var(--muted); letter-spacing: 0.05em; text-transform: uppercase; margin: 0; }

/* LAUNCH BANNER */
.launch-banner {
  background: var(--ink);
  color: white;
  padding: 10px 0;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.launch-banner strong { color: #FFD580; font-weight: 600; }
.launch-banner a { color: white; border-bottom: 0.5px solid rgba(255,255,255,0.4); padding-bottom: 1px; }
.launch-banner a:hover { border-color: white; }

/* SEO TRUST BAND */
.trust-band {
  padding: 28px 0;
  background: white;
  border-top: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}
.trust-band-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 40px;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.trust-num {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1;
}
.trust-label {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 960px) {
  :root { --gutter: 24px; }
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .hero-title { font-size: 42px; }
  .page-header h1 { font-size: 36px; }
  .hero { padding: 48px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 360px; }
  .section { padding: 64px 0; }
  .three-col, .steps, .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .problem-list { grid-template-columns: 1fr; gap: 0; }
  .stats-row { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-mobile-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: white; border-bottom: 0.5px solid var(--border);
    padding: 20px var(--gutter); flex-direction: column; gap: 16px; z-index: 100;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a { font-size: 15px; color: var(--ink); padding: 8px 0; }
  .final-cta h2 { font-size: 30px; }
  .quote-block .quote { font-size: 26px; }
}

@media (max-width: 560px) {
  .hero-title { font-size: 34px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .report-card-a, .report-card-b { transform: none; }
  .report-card-a { left: 0; }
  .report-card-b { right: 0; }
}
