/* ResumeTruth Landing Page */
:root {
  --navy: #0f172a;
  --blue: #1d4ed8;
  --blue-light: #3b82f6;
  --slate: #475569;
  --gray: #94a3b8;
  --light: #f8fafc;
  --white: #ffffff;
  --green: #059669;
  --border: #e2e8f0;
  --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--navy);
  line-height: 1.6;
  background: var(--white);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* NAV */
nav {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  z-index: 100;
}
nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--blue); }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--blue-light); }

/* HERO */
.hero {
  padding: 96px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}
.hero-badge {
  display: inline-block;
  background: #eff6ff;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid #dbeafe;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 680px;
  margin: 0 auto 20px;
  color: var(--navy);
}
.hero h1 em {
  font-style: normal;
  color: var(--blue);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  padding: 16px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(29,78,216,0.3);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29,78,216,0.35);
}
.trust-line {
  font-size: 0.82rem;
  color: var(--gray);
}
.trust-line strong { color: var(--slate); }

/* LOGOS */
.trust-section {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-section p {
  text-align: center;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 28px;
  font-weight: 600;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.45;
}
.trust-logo-item {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate);
  letter-spacing: -0.02em;
}

/* SECTION HEADINGS */
.section-heading {
  text-align: center;
  margin-bottom: 56px;
}
.section-heading h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section-heading p {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

/* HOW IT WORKS */
.how-it-works {
  padding: 96px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  background: var(--white);
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 20px;
}
.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step p {
  color: var(--slate);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* BENEFITS */
.benefits {
  padding: 96px 0;
  background: var(--light);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit-card p {
  color: var(--slate);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* WHO IT'S FOR */
.audience {
  padding: 96px 0;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.audience-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.audience-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.audience-card p {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* PRICING */
.pricing {
  padding: 96px 0;
  background: var(--light);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(29,78,216,0.08);
}
.pricing-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray);
}
.pricing-card p {
  color: var(--slate);
  font-size: 0.88rem;
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing-features li {
  font-size: 0.88rem;
  color: var(--slate);
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* CTA BAND */
.cta-band {
  padding: 80px 0;
  text-align: center;
  background: var(--navy);
  color: var(--white);
}
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-band p {
  color: #94a3b8;
  font-size: 1.05rem;
  margin-bottom: 32px;
}
.cta-band .btn-primary {
  background: var(--white);
  color: var(--navy);
  box-shadow: none;
}
.cta-band .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

/* FOOTER */
footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--gray);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--gray);
  text-decoration: none;
}
.footer-links a:hover { color: var(--navy); }
.footer-disclaimer {
  max-width: 680px;
  line-height: 1.7;
  color: #64748b;
  font-size: 0.78rem;
}
.footer-copy {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  color: var(--gray);
}

/* MOBILE */
@media (max-width: 640px) {
  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 2rem; }
  .steps, .benefit-grid, .audience-grid, .pricing-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 24px; }
}