/* Polished Path Resumes website
   Calm, premium, burnout-aware styling
*/

:root {
  --ink: #20231f;
  --muted: #62685f;
  --sage: #6f7f70;
  --sage-dark: #4e5e50;
  --sage-soft: #eef3ee;
  --gold: #c9a86a;
  --cream: #fbf8f0;
  --white: #ffffff;
  --line: #dde3da;
  --shadow: 0 24px 70px rgba(42, 51, 42, 0.13);
  --radius: 24px;
  --radius-small: 14px;
  --wrap: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  z-index: 99;
  border-radius: 8px;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 240, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 227, 218, 0.7);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.04em;
  box-shadow: 0 10px 28px rgba(111, 127, 112, 0.26);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 11px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(111, 127, 112, 0.22);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  padding: 86px 0 72px;
  background:
    radial-gradient(circle at 85% 10%, rgba(201, 168, 106, 0.2), transparent 28%),
    radial-gradient(circle at 20% 20%, rgba(111, 127, 112, 0.16), transparent 28%),
    var(--cream);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
  max-width: 910px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  font-size: 1.28rem;
}

.hero-lead {
  font-size: clamp(1.12rem, 2.3vw, 1.38rem);
  color: var(--muted);
  max-width: 760px;
  margin: 26px 0 0;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  padding: 13px 22px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font-size: 0.98rem;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(111, 127, 112, 0.26);
}

.btn.primary:hover {
  background: var(--sage-dark);
}

.btn.secondary {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(42, 51, 42, 0.06);
}

.btn.full {
  width: 100%;
}

.microcopy,
.small {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.card-topline {
  color: var(--sage-dark);
  font-weight: 900;
  margin-bottom: 14px;
}

.hero-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.hero-card p {
  color: var(--muted);
  margin: 18px 0 0;
}

.hero-card ul {
  padding: 0;
  list-style: none;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}

.hero-card li {
  position: relative;
  padding-left: 30px;
  color: #394038;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.7);
}

.trust-strip {
  background: var(--sage-dark);
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.trust-grid div {
  padding: 24px 26px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-grid strong {
  display: block;
  font-size: 1.05rem;
}

.trust-grid span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  margin-top: 4px;
  font-size: 0.94rem;
}

.section {
  padding: 88px 0;
}

.soft-bg {
  background: var(--sage-soft);
}

.two-col {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: start;
}

.section-copy p {
  margin: 0 0 18px;
  font-size: 1.06rem;
  color: var(--muted);
}

.section-copy p:last-child {
  margin-bottom: 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-heading.centre {
  text-align: center;
  margin-inline: auto;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.info-card,
.price-card,
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-small);
  padding: 26px;
  box-shadow: 0 16px 38px rgba(42, 51, 42, 0.06);
}

.info-card .icon {
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 34px;
  padding-inline: 10px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--sage-dark);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 18px;
}

.info-card p,
.feature-list p,
.step p,
.price-copy {
  color: var(--muted);
  margin: 12px 0 0;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list div {
  border-left: 4px solid var(--gold);
  padding: 18px 0 18px 22px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  overflow: hidden;
}

.price-card.featured {
  border: 2px solid var(--sage);
  transform: translateY(-10px);
  box-shadow: var(--shadow);
}

.badge {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 999px;
  padding: 7px 12px;
  font-weight: 900;
  font-size: 0.78rem;
}

.best-for {
  color: var(--sage-dark);
  font-weight: 850;
  margin: 0 0 10px;
  font-size: 0.9rem;
}

.price {
  font-size: 3rem;
  font-weight: 950;
  letter-spacing: -0.06em;
  margin: 18px 0 4px;
}

.price-card ul {
  padding: 0;
  list-style: none;
  margin: 24px 0 28px;
  display: grid;
  gap: 12px;
}

.price-card li {
  position: relative;
  padding-left: 28px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 900;
}

.addons {
  margin-top: 36px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.addon-grid div {
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 16px;
}

.addon-grid strong,
.addon-grid span {
  display: block;
}

.addon-grid span {
  color: rgba(255, 255, 255, 0.76);
  margin-top: 4px;
}

.note {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 18px;
  border-radius: 14px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 18px;
}

.lead-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(201, 168, 106, 0.16), transparent 26%),
    var(--sage-soft);
}

.lead-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
}

.lead-copy {
  position: sticky;
  top: 110px;
}

.lead-copy p {
  color: var(--muted);
}

.review-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.review-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.review-form input,
.review-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  font: inherit;
  background: #fcfcf9;
  color: var(--ink);
}

.review-form input:focus,
.review-form textarea:focus {
  outline: 3px solid rgba(111, 127, 112, 0.22);
  border-color: var(--sage);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage-dark);
  font-weight: 800;
}

.faq-wrap {
  max-width: 870px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-question {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 16px;
  padding: 18px 20px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question span {
  font-size: 1.3rem;
}

.faq-answer {
  display: none;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-top: 0;
  margin-top: -14px;
  border-radius: 0 0 16px 16px;
  padding: 18px 20px;
  color: var(--muted);
}

.faq-answer.open {
  display: block;
}

.final-cta {
  padding-top: 20px;
}

.cta-box {
  background: var(--sage-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(32px, 6vw, 64px);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-box .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.cta-box p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 650px;
  margin-inline: auto;
}

.cta-box .btn.primary {
  background: var(--white);
  color: var(--sage-dark);
}

.site-footer {
  background: #171a16;
  color: var(--white);
  padding: 54px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-grid h3 {
  font-size: 1rem;
  margin-bottom: 12px;
}

.footer-brand .brand-mark {
  background: var(--gold);
  color: var(--ink);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero-grid,
  .two-col,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .lead-copy {
    position: static;
  }

  .trust-grid,
  .pricing-grid,
  .cards.four,
  .steps,
  .addon-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .hero {
    padding: 58px 0 48px;
  }

  .section {
    padding: 62px 0;
  }

  .trust-grid,
  .pricing-grid,
  .cards.four,
  .steps,
  .addon-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }
}
