:root {
  --ink: #132238;
  --muted: #657184;
  --paper: #ffffff;
  --soft: #f5f8f7;
  --line: #dfe8e4;
  --green: #17745a;
  --green-dark: #0d4f3d;
  --mint: #dff5ec;
  --blue: #1f5f9f;
  --blue-soft: #e8f0fb;
  --coral: #d95f45;
  --yellow: #f5c84c;
  --shadow: 0 18px 46px rgba(19, 34, 56, .12);
  --shadow-soft: 0 10px 28px rgba(19, 34, 56, .08);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
body.no-scroll { overflow: hidden; }
main { padding-top: 82px; }
h1, h2, h3, h4 {
  margin: 0 0 18px;
  font-family: Manrope, "DM Sans", sans-serif;
  line-height: 1.1;
  letter-spacing: 0;
}
h1 { font-size: clamp(2.7rem, 5.5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.16rem; }
p { margin: 0 0 18px; color: var(--muted); }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, calc(100% - 40px)); margin: auto; }
.centered { text-align: center; }
.centered > p { max-width: 680px; margin-left: auto; margin-right: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  height: 82px;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(223, 232, 228, .9);
  backdrop-filter: blur(12px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.brand { display: flex; align-items: center; gap: 10px; font: 900 1.22rem Manrope; }
.main-nav { display: flex; align-items: center; gap: 24px; font-size: .92rem; font-weight: 800; }
.main-nav > a:not(.button):hover { color: var(--green); }
.menu-button { display: none; border: 0; background: none; color: var(--ink); font-size: 1.45rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 13px 22px;
  border: 1px solid var(--green);
  border-radius: var(--radius);
  color: #fff !important;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(23, 116, 90, .18);
  font-weight: 900;
  line-height: 1.15;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--green-dark); box-shadow: 0 14px 32px rgba(23, 116, 90, .25); }
.button-small { min-height: 40px; padding: 10px 16px; }
.button-large { min-height: 54px; padding: 16px 24px; font-size: 1.02rem; }
.button-ghost, .button-outline { color: var(--ink) !important; background: #fff; border-color: var(--line); box-shadow: none; }
.button-light { color: var(--green-dark) !important; background: #fff; border-color: #fff; }
.button-ghost:hover, .button-outline:hover { color: var(--ink) !important; background: #f6faf8; border-color: #bfd2ca; }
.button-light:hover { color: var(--green-dark) !important; background: #f3fff9; border-color: #f3fff9; }

.section { padding: 105px 0; scroll-margin-top: 96px; }
.section-label, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--green);
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 900;
}
.eyebrow span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--mint);
  font-size: .65rem;
}
.reveal { animation: fadeUp .65s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 82px);
  padding: 80px 0 72px;
  background: linear-gradient(180deg, #fbfdfc 0%, #f2f7f5 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 66px; }
.hero h1 { max-width: 780px; margin-bottom: 24px; color: #102033; }
.hero-text { max-width: 670px; margin-bottom: 12px; color: #405064; font-size: 1.08rem; }
.hero-text.strong { color: var(--ink); font-weight: 900; }
.impact-note {
  max-width: 690px;
  margin-top: 24px;
  padding: 17px 18px;
  border-left: 4px solid var(--yellow);
  border-radius: var(--radius);
  color: #243345;
  background: #fff9e5;
  font-weight: 900;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 30px 0 22px; }
.hero-microcopy { display: block; margin: -6px 0 16px; color: #6b7b87; font-weight: 900; }
.trust-row { display: flex; gap: 9px; flex-wrap: wrap; }
.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #52655f;
  background: #fff;
  font-size: .8rem;
  font-weight: 800;
}
.hero-visual { position: relative; min-height: 575px; display: flex; align-items: center; justify-content: center; }
.visual-backdrop {
  position: absolute;
  width: 94%;
  height: 76%;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(23, 116, 90, .16), rgba(31, 95, 159, .14));
  transform: rotate(3deg);
}
.resume-mock {
  position: relative;
  z-index: 2;
  width: min(448px, 92%);
  padding: 38px;
  border: 1px solid #e3ece8;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: #1b2d3c;
  font: .78rem Arial, sans-serif;
  line-height: 1.45;
  transform: rotate(-1.2deg);
  animation: floatDoc 5s ease-in-out infinite;
}
@keyframes floatDoc { 50% { transform: rotate(-1.2deg) translateY(-8px); } }
.mock-topline { height: 8px; margin: -38px -38px 28px; background: var(--green); border-radius: var(--radius) var(--radius) 0 0; }
.mock-head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 3px solid var(--green); }
.avatar { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--mint); color: var(--green); font-weight: 900; }
.mock-head b, .mock-head span { display: block; }
.mock-head b { font-size: 1.35rem; }
.mock-head span, .mock-contact { color: #657184; }
.mock-contact { display: flex; gap: 20px; flex-wrap: wrap; padding: 12px 0; font-size: .7rem; }
.resume-mock h4 { margin: 16px 0 6px; color: var(--green); font: 800 .7rem Arial; text-transform: uppercase; }
.resume-mock p { margin: 0 0 10px; color: #4f5d65; }
.mock-role { display: flex; justify-content: space-between; gap: 15px; }
.mock-role span { color: #7b858b; font-size: .68rem; }
.resume-mock ul { margin: 6px 0; padding-left: 17px; color: #4f5d65; }
.mock-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.mock-tags span { padding: 5px 9px; border-radius: 4px; background: #eef5f2; }
.float-pill {
  position: absolute;
  z-index: 4;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: .78rem;
  font-weight: 900;
}
.pill-one { left: -4px; top: 88px; color: var(--green); }
.pill-two { right: 0; bottom: 90px; color: var(--blue); }

.proof-strip { padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.proof-strip .container { display: flex; align-items: center; gap: 28px; }
.proof-strip span { color: #87948f; text-transform: uppercase; font-size: .68rem; font-weight: 900; }
.proof-strip div div { display: flex; gap: 22px; flex-wrap: wrap; font-size: .86rem; }

.split-heading { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; margin-bottom: 48px; }
.split-heading p { font-size: 1.02rem; }
.section-punch {
  display: block;
  margin: 18px 0 22px;
  color: var(--ink);
  font: 900 1.08rem Manrope;
}
.big-ok {
  display: block;
  color: var(--green);
  font: 900 clamp(2.1rem, 5vw, 4rem) Manrope;
}
.first-filter-section {
  padding: 72px 0;
  background: #102033;
  color: #fff;
}
.first-filter-section p { color: #d7e2e9; }
.first-filter-section .section-label { color: #93e2c8; }
.first-filter-section .section-punch { color: #fff; }
.first-filter-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: stretch;
}
.filter-proof-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: linear-gradient(150deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow: 0 22px 46px rgba(0,0,0,.18);
}
.filter-proof-card small {
  color: #93e2c8;
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 900;
}
.filter-proof-card b {
  display: block;
  margin: 14px 0;
  font: 900 clamp(1.5rem, 3vw, 2.4rem) Manrope;
  line-height: 1.08;
}
.filter-proof-card span { color: #c2d2da; font-weight: 800; }
.outcome-section { background: #f7fbfa; }
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.outcome-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.outcome-card small {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: .64rem;
  font-weight: 900;
}
.outcome-card.loss small { color: #9f3f35; background: #fff0ed; }
.outcome-card.gain small { color: var(--green-dark); background: var(--mint); }
.outcome-card h3 { font-size: 1.55rem; }
.outcome-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.outcome-card li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid #edf2ef;
  color: #4c5d69;
  font-weight: 800;
}
.outcome-card li:last-child { border-bottom: 0; }
.outcome-card.loss li::before,
.outcome-card.gain li::before {
  position: absolute;
  left: 0;
  font-weight: 900;
}
.outcome-card.loss li::before { content: "×"; color: #b9473a; }
.outcome-card.gain li::before { content: "✓"; color: var(--green); }
.pain-grid, .benefit-grid, .objection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pain-grid article, .benefit-card, .objection-grid article, .compare-card, .model-card, .faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(19, 34, 56, .05);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pain-grid article:hover, .benefit-card:hover, .objection-grid article:hover, .model-card:hover {
  transform: translateY(-4px);
  border-color: #c7d8d1;
  box-shadow: var(--shadow-soft);
}
.pain-grid article { padding: 25px; }
.pain-grid article > span { color: var(--coral); font: 900 .78rem Manrope; }
.pain-grid h3 { margin-top: 28px; }
.pain-grid p, .benefit-card p, .objection-grid p { margin: 0; font-size: .92rem; }
.section-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding: 22px;
  border-radius: var(--radius);
  background: #102b24;
  color: #fff;
}
.section-cta p { margin: 0; color: #d1e3de; font-weight: 900; }

.resume-type-section { background: #fff; }
.type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.type-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.type-card:first-child { border-color: #bfe0d5; background: #f6fcfa; }
.type-card small {
  margin-bottom: 12px;
  color: var(--green);
  text-transform: uppercase;
  font-size: .68rem;
  font-weight: 900;
}
.type-card h3 { font-size: 1.5rem; }
.type-card ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 18px;
}
.type-card li {
  position: relative;
  padding: 6px 0 6px 24px;
  color: #4e625b;
  font-weight: 800;
}
.type-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}
.type-card b {
  display: block;
  margin: 0 0 20px;
  color: var(--ink);
}
.type-card .button { margin-top: auto; width: 100%; }

.solution-section { background: var(--soft); }
.solution-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: center; margin-bottom: 54px; }
.solution-card { padding: 26px; border-radius: var(--radius); background: var(--green); box-shadow: var(--shadow); }
.before-after { padding: 30px; border-radius: var(--radius); background: #fff; }
.before-after small { color: #87948f; text-transform: uppercase; font-size: .68rem; font-weight: 900; }
.before-after p { padding: 16px; margin: 7px 0 18px; border-left: 3px solid #cbd8d4; border-radius: 0 var(--radius) var(--radius) 0; background: #f7f9f8; color: #5f6a70; }
.before-after .improved { border-color: var(--green); background: #edf8f4; color: var(--ink); font-weight: 700; }
.magic-line { display: flex; align-items: center; justify-content: space-between; color: var(--green); font-size: .78rem; font-weight: 900; }
.solution-cta { margin-top: 24px; }
.solution-cta p { color: var(--ink); font-weight: 900; }
.benefit-card { padding: 24px; }
.benefit-card i { display: block; width: 36px; height: 7px; margin-bottom: 24px; border-radius: 999px; background: var(--green); }
.checklist-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist-card li {
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid #edf2ef;
  color: #40554e;
  font-weight: 900;
  position: relative;
}
.checklist-card li:last-child { border-bottom: 0; }
.checklist-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: .75rem;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 4px;
}
.pill-grid span {
  padding: 9px 12px;
  border: 1px solid #cae0d8;
  border-radius: 999px;
  color: var(--green-dark);
  background: #f2fbf7;
  font-size: .84rem;
  font-weight: 900;
}

.steps-section { background: #102b24; color: #fff; }
.steps-section p { color: #a9bfb8; }
.steps-section .section-label { color: #93e2c8; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 52px; }
.steps-grid article { position: relative; padding: 0 24px; }
.step-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 26px; border: 1px solid #4f7168; border-radius: 50%; color: #91e5c8; font: 900 1.2rem Manrope; }
.steps-grid .line { position: absolute; left: 80px; right: -4px; top: 27px; border-top: 1px dashed #4a675f; }
.steps-grid article:last-child .line { display: none; }
.steps-grid h3 { font-size: 1.08rem; }
.steps-grid p { font-size: .88rem; }
.action-space { margin-top: 45px; }
.action-space small, .final-cta small { display: block; margin-top: 14px; color: #8da29b; font-size: .82rem; font-weight: 800; }

.comparison-section { background: #fff; }
.comparison-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 36px; }
.compare-card { padding: 30px; }
.compare-card h3 { font-size: 1.3rem; }
.compare-card ul { list-style: none; padding: 0; margin: 0; }
.compare-card li { padding: 10px 0; border-bottom: 1px solid #edf1ef; color: #52635d; font-weight: 700; }
.compare-card li:last-child { border-bottom: 0; }
.compare-card.weak { background: #fffafa; }
.compare-card.weak h3 { color: #9f3f35; }
.compare-card.strong-card { border-color: #bfe0d5; background: #f4fbf8; }
.compare-card.strong-card h3 { color: var(--green); }

.impact-section { color: #fff; background: linear-gradient(135deg, #102b24, #173f63); }
.impact-section p { color: #c6dad5; }
.impact-section .section-label { color: #93e2c8; }
.impact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.impact-list { display: grid; gap: 12px; }
.impact-list p { margin: 0; padding: 18px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.06); color: #fff; font-weight: 900; }

.examples-section { background: var(--soft); }
.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.model-card { padding: 18px 18px 24px; }
.model-card h2, .model-card h3 { margin: 18px 4px 5px; font-size: 1.18rem; }
.model-card > p { margin: 0 4px 12px; font-size: .88rem; }
.model-card > a { margin: 5px 4px; color: var(--green); font-weight: 900; }
.model-image {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid #e0ebe6;
  border-radius: 8px;
  background: #f8fbfa;
}
.model-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .22s ease;
}
.model-card:hover .model-image img { transform: scale(1.025); }
.mini-resume { height: 360px; padding: 28px; border: 1px solid #e4ebe8; background: #fafafa; color: #263a42; font: 7px Arial; }
.mini-resume header { display: flex; align-items: center; gap: 10px; padding-bottom: 14px; border-bottom: 3px solid var(--green); }
.mini-resume header i { width: 28px; height: 28px; border-radius: 50%; background: #d5e8e1; }
.mini-resume header b, .mini-resume header span { display: block; }
.mini-resume header b { font-size: 12px; }
.mini-resume hr { border: 0; margin: 15px; }
.mini-resume strong { display: block; margin: 16px 0 7px; color: var(--green); }
.mini-resume p { width: 90%; height: 5px; margin: 5px 0; background: #dce2e0; }
.mini-resume h5 { margin: 8px 0 3px; font-size: 8px; }
.tiny-tags { display: flex; gap: 6px; }
.tiny-tags i { width: 40px; height: 14px; background: #d9e9e3; }
.mini-resume.modern { border-top: 16px solid var(--blue); }
.mini-resume.modern header { border-bottom: 0; }
.mini-resume.minimal { padding: 42px; background: #fff; }
.mini-resume.minimal header { border-bottom: 1px solid #333; }
.mini-resume.minimal header i { display: none; }
.mini-resume.minimal strong { color: #333; }
.model-disclaimer { margin-top: 28px; color: var(--muted); font-size: .86rem; }

.objections-section { background: #fff; }
.objection-grid article { padding: 24px; }
.first-job-section { background: #fff; }
.no-signup-section { background: var(--soft); }
.urgency-section {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8f6 100%);
}
.urgency-section .container { max-width: 880px; }
.urgency-section p { font-size: 1.06rem; }
.faq-section { background: var(--soft); }
.faq-list { max-width: 860px; }
.faq-list details { padding: 0 20px; margin-bottom: 10px; }
.faq-list summary { cursor: pointer; padding: 18px 0; color: var(--ink); font-weight: 900; }
.faq-list p { padding-bottom: 18px; margin: 0; }

.final-cta { position: relative; overflow: hidden; padding: 100px 0; color: #fff; text-align: center; background: linear-gradient(130deg, #176d56, #0d4234); }
.final-cta .container { position: relative; max-width: 900px; }
.final-cta h2 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
.final-cta p { max-width: 720px; margin-left: auto; margin-right: auto; color: #d4e8e0; }
.eyebrow.dark { color: #a5ebd3; }
.eyebrow.dark span { color: #fff; background: rgba(255,255,255,.13); }
.final-cta small { color: #c4ded5; }

.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: none;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid rgba(223, 232, 228, .95);
  box-shadow: 0 -12px 30px rgba(19, 34, 56, .13);
  transform: translateY(110%);
  transition: transform .22s ease;
}
.mobile-sticky-cta .button {
  width: 100%;
  min-height: 52px;
}
.mobile-sticky-cta.show { transform: translateY(0); }

.site-footer { padding: 62px 0 24px; background: #0b1e19; color: #d7e2de; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 70px; }
.brand-footer { color: #fff; }
.footer-grid p { max-width: 300px; margin-top: 15px; color: #849b93; font-size: .9rem; }
.footer-grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 10px; font-size: .9rem; }
.footer-grid strong { margin-bottom: 8px; color: #849b93; text-transform: uppercase; font-size: .68rem; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid #243832; color: #6e857d; font-size: .78rem; }

/* Existing internal pages */
.inner-hero { padding: 100px 0 90px; background: var(--soft); }
.inner-hero.compact { padding: 80px 0; }
.inner-hero h1 { max-width: 920px; margin-left: auto; margin-right: auto; font-size: clamp(2.5rem, 5vw, 4.4rem); }
.inner-hero p { font-size: 1.1rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 420px)); justify-content: center; gap: 24px; margin-top: 50px; }
.pricing-grid.wide { grid-template-columns: repeat(2, minmax(0, 450px)); margin-top: 0; }
.price-card { position: relative; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-soft); }
.price-card.featured { border: 2px solid var(--green); }
.popular { position: absolute; right: 22px; top: -14px; padding: 7px 13px; border-radius: 999px; color: #fff; background: var(--coral); font-size: .67rem; font-weight: 900; text-transform: uppercase; }
.plan-name { font: 900 1.1rem Manrope; }
.price-card > p { margin-top: 7px; font-size: .9rem; }
.price { display: flex; align-items: flex-start; gap: 4px; margin: 25px 0; }
.price small { margin-top: 12px; font-weight: 900; }
.price b { font: 900 3.2rem Manrope; }
.price span { align-self: flex-end; margin-bottom: 11px; color: var(--muted); font-size: .8rem; }
.price-card ul { list-style: none; padding: 22px 0; margin: 0 0 22px; border-top: 1px solid var(--line); }
.price-card li { padding: 6px 0; font-size: .9rem; }
.price-card .button { width: 100%; }
.payment-note { display: flex; justify-content: center; gap: 25px; align-items: center; margin-top: 40px; padding: 20px; border-radius: var(--radius); background: var(--soft); font-size: .86rem; }
.payment-note span { color: var(--muted); }
.process-list { max-width: 870px; }
.process-list article { display: grid; grid-template-columns: 90px 1fr; gap: 30px; padding: 35px 0; border-bottom: 1px solid var(--line); }
.process-list article > span { display: grid; place-items: center; width: 60px; height: 60px; border-radius: var(--radius); background: var(--mint); color: var(--green); font: 900 1.3rem Manrope; }
.process-list h2 { margin-bottom: 7px; font-size: 1.65rem; }
.process-list p { margin: 0; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; max-width: 950px; }
.blog-card { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); }
.blog-card > span { color: var(--green); text-transform: uppercase; font-size: .7rem; font-weight: 900; }
.blog-card h2 { margin-top: 17px; font-size: 1.4rem; }
.blog-card p { font-size: .9rem; }
.blog-card a { color: var(--green); font-weight: 900; }
.article-page header { max-width: 840px; padding: 90px 0 45px; }
.article-page header > a { color: var(--green); font-size: .85rem; font-weight: 900; }
.article-page header > span { display: block; margin: 45px 0 12px; color: #87938f; text-transform: uppercase; font-size: .7rem; }
.article-page header h1 { font-size: clamp(2.7rem, 5vw, 4.5rem); }
.article-page header p { font-size: 1.15rem; }
.article-body { max-width: 760px; padding-bottom: 100px; }
.article-body h2 { margin-top: 40px; font-size: 1.65rem; }
.article-body p { font-size: 1.04rem; }
.article-body aside { margin-top: 60px; padding: 34px; border-radius: var(--radius); background: var(--soft); }
.article-body aside h2 { margin-top: 0; }
.legal-page { max-width: 820px; padding: 90px 0; }
.legal-page h1 { font-size: 3.4rem; }
.legal-page h2 { margin-top: 40px; font-size: 1.4rem; }
.updated { font-size: .85rem; }
.empty-page { padding: 130px 0; }
.empty-page > span { color: var(--mint); font: 900 5rem Manrope; }
.empty-page h1 { font-size: 2.5rem; }

@media (max-width: 980px) {
  .main-nav { gap: 14px; }
  .hero-grid, .solution-grid, .split-heading, .impact-grid, .first-filter-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy p, .impact-note { margin-left: auto; margin-right: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 500px; }
  .pain-grid, .benefit-grid, .objection-grid, .type-grid, .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 38px; }
  .steps-grid .line { display: none; }
  .model-grid { grid-template-columns: 1fr; max-width: 520px; }
  .mini-resume { height: 430px; }
}

@media (max-width: 760px) {
  body { font-size: 15px; }
  main { padding-top: 70px; }
  .container { width: min(100% - 32px, 1160px); }
  .site-header { height: 70px; }
  .brand { font-size: 1.05rem; }
  .menu-button { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 62px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav .button { width: 100%; }
  .hero { min-height: auto; padding: 56px 0 64px; }
  .hero h1 { font-size: 2.65rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 300px; }
  .resume-mock { padding: 26px 22px; }
  .mock-topline { margin: -26px -22px 24px; }
  .float-pill { display: none; }
  .proof-strip .container { flex-direction: column; gap: 8px; text-align: center; }
  .proof-strip div div { justify-content: center; gap: 8px 16px; }
  .section { padding: 74px 0; }
  .pain-grid, .benefit-grid, .objection-grid, .comparison-grid, .steps-grid, .type-grid, .outcome-grid, .pricing-grid, .pricing-grid.wide, .blog-grid { grid-template-columns: 1fr; }
  .first-filter-section { padding: 58px 0; }
  .filter-proof-card, .outcome-card { padding: 22px; }
  .filter-proof-card { min-height: 0; }
  .type-card { padding: 22px; }
  .type-card h3 { font-size: 1.22rem; }
  .type-card .button, .solution-grid .button, .urgency-section .button { width: 100%; }
  .section-cta { align-items: stretch; flex-direction: column; text-align: center; }
  .section-cta .button { width: 100%; }
  .solution-card { padding: 16px; }
  .before-after { padding: 22px; }
  .steps-grid article { text-align: center; }
  .step-icon { margin-left: auto; margin-right: auto; }
  .impact-grid { gap: 34px; }
  .final-cta { padding: 76px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .payment-note { align-items: flex-start; flex-direction: column; gap: 6px; }
  .process-list article { grid-template-columns: 60px 1fr; gap: 17px; }
  .process-list article > span { width: 50px; height: 50px; }
  .mobile-sticky-cta { display: block; }
  body.sticky-cta-visible .site-footer { padding-bottom: 110px; }
}

.page-home .hero-visual {
  position: relative;
  min-height: 575px;
}

.page-home .hero-visual > * {
  display: none !important;
}

.page-home .hero-visual::before {
  content: "";
  position: absolute;
  inset: -34px -46px -18px -28px;
  display: block;
  background: url("hero-curriculo-ai.jpeg") center / contain no-repeat;
  filter: drop-shadow(0 28px 48px rgba(19, 34, 56, .16));
}

@media (max-width: 980px) {
  .page-home .hero-visual::before {
    inset: -18px;
  }
}

@media (max-width: 760px) {
  .page-home .hero-visual {
    min-height: 360px;
  }

  .page-home .hero-visual::before {
    inset: -10px;
  }
}

.page-home .steps-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7fbfa 0%, #ffffff 72%),
    linear-gradient(90deg, rgba(23, 116, 90, .08), rgba(31, 95, 159, .06));
}

.page-home .steps-section .centered {
  max-width: 760px;
}

.page-home .steps-section .section-label {
  color: var(--green);
}

.page-home .steps-section h2 {
  color: var(--ink);
}

.page-home .steps-section p {
  color: #60717d;
}

.page-home .steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.page-home .steps-grid article {
  position: relative;
  min-height: 244px;
  padding: 22px;
  border: 1px solid #dce9e4;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(20, 45, 39, .08);
}

.page-home .steps-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.page-home .step-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 8px 0 22px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  box-shadow: 0 14px 26px rgba(23, 116, 90, .18);
  font: 900 1.05rem Manrope;
}

.page-home .steps-grid .line {
  display: none;
}

.page-home .steps-grid h3 {
  color: var(--ink);
  font-size: 1.06rem;
}

.page-home .steps-grid p {
  margin-top: 10px;
  font-size: .9rem;
}

.page-home .steps-section .action-space {
  margin-top: 38px;
}

.page-home .steps-section .action-space small {
  color: #6f817b;
}

@media (max-width: 980px) {
  .page-home .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-home .steps-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 30px;
  }

  .page-home .steps-grid article {
    display: grid;
    grid-template-columns: 50px 1fr;
    column-gap: 14px;
    align-items: start;
    min-height: 0;
    padding: 18px;
    text-align: left;
  }

  .page-home .step-icon {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    margin: 4px 0 0;
  }

  .page-home .steps-grid h3 {
    margin-top: 3px;
    font-size: 1rem;
  }

  .page-home .steps-grid p {
    margin-top: 6px;
  }
}

.brand .brand-logo {
  display: block;
  width: 188px;
  height: 58px;
  border-radius: 8px;
  background: #fff;
  object-fit: contain;
}

.brand-footer .brand-logo {
  width: 198px;
  height: 62px;
}

@media (max-width: 760px) {
  .brand .brand-logo {
    width: 154px;
    height: 48px;
  }
}
