/* Prumo — Teal-inspired design system (original brand) */
:root {
  --white: #FFFFFF;
  --charcoal: #1A1A1A;
  --charcoal-soft: #3A3A3A;
  --muted: #5C5C5C;
  --border: #D8D8D8;
  --teal: #005149;
  --teal-deep: #003D37;
  --yellow: #F5B501;
  --yellow-hover: #E5A800;
  --mint: #E9F3F3;
  --mint-2: #D5E8E8;
  --indigo: #5A6FEC;
  --maroon: #791E3F;
  --coral: #F07060;
  --gray-bg: #F4F4F4;
  --shadow: 0 8px 28px rgba(26, 26, 26, 0.08);
  --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --pill: 999px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.03em; line-height: 1.15; font-weight: 800; }
p { margin: 0; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--yellow);
  color: var(--charcoal);
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: var(--pill);
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  padding: 0.85rem 1.5rem;
  border-radius: var(--pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 2px;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--charcoal);
  border-color: var(--yellow);
}
.btn-yellow:hover { background: var(--yellow-hover); }
.btn-outline {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover { background: var(--gray-bg); }
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-lg { padding: 1.05rem 1.85rem; font-size: 1.05rem; }
.btn-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26,26,26,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}
.logo-word {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  text-transform: lowercase;
}
.logo-mark { display: flex; }

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}
.nav a:hover { color: var(--teal); }

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(26,26,26,0.06);
  background: var(--white);
}
.mobile-nav[hidden] { display: none !important; }
.mobile-nav a {
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  border-radius: 8px;
}
.mobile-nav a:hover { background: var(--mint); }
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

@media (min-width: 900px) {
  .nav, .header-actions { display: flex; }
  .menu-toggle, .mobile-nav { display: none !important; }
}

/* Hero */
.hero {
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 2.5rem;
  }
}

.hero-copy h1 {
  font-size: clamp(2.35rem, 5vw, 3.55rem);
  letter-spacing: -0.045em;
  margin-bottom: 1.1rem;
}
.lede {
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.hero-bullets li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}
.bullet-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bullet-maroon { background: #F8E8EE; color: var(--maroon); }
.bullet-indigo { background: #ECEFFD; color: var(--indigo); }
.bullet-teal { background: var(--mint); color: var(--teal); }
.hero-bullets strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}
.hero-bullets span {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-proof {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Hero visual */
.hero-visual {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-teal-block {
  position: absolute;
  right: 0;
  top: 8%;
  bottom: 0;
  width: 72%;
  background: var(--teal);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  z-index: 0;
}
.resume-mock {
  position: relative;
  z-index: 1;
  width: min(100%, 320px);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.35rem 1.25rem;
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--charcoal);
}
.resume-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.resume-role {
  font-weight: 600;
  color: var(--teal);
  margin: 0.15rem 0 0.35rem;
}
.resume-meta { color: var(--muted); margin-bottom: 0.9rem; }
.resume-sec-title {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1.5px solid var(--mint-2);
  padding-bottom: 0.25rem;
  margin-bottom: 0.55rem;
}
.resume-job { margin-bottom: 0.65rem; }
.resume-job ul {
  margin: 0.25rem 0 0 0.9rem;
  list-style: disc;
  color: var(--charcoal-soft);
}
.resume-job li { margin-bottom: 0.15rem; }

.float-card {
  position: absolute;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.85rem 1rem;
}
.float-score {
  top: 4%;
  right: 2%;
  display: flex;
  gap: 0.85rem;
  align-items: center;
  max-width: 260px;
}
.score-ring { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.score-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-num { font-weight: 800; font-size: 0.95rem; letter-spacing: -0.03em; }
.score-label { font-size: 0.58rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.score-bars { flex: 1; display: flex; flex-direction: column; gap: 0.4rem; min-width: 110px; }
.bar-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.68rem;
  color: var(--muted);
}
.bar {
  height: 6px;
  background: #EEE;
  border-radius: var(--pill);
  overflow: hidden;
}
.bar i { display: block; height: 100%; border-radius: var(--pill); }

.float-job {
  left: 0;
  bottom: 18%;
  max-width: 200px;
  font-size: 0.75rem;
}
.job-company { font-weight: 800; font-size: 0.85rem; }
.job-title { color: var(--charcoal-soft); margin: 0.15rem 0 0.45rem; }
.job-title .check { color: var(--teal); font-weight: 800; }
.float-job ul { list-style: disc; margin-left: 1rem; color: var(--muted); }
.float-job li { margin-bottom: 0.15rem; }

.float-ai {
  right: 6%;
  bottom: 4%;
  max-width: 240px;
  background: var(--mint);
  font-size: 0.72rem;
  color: var(--charcoal-soft);
}
.ai-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.65rem;
  padding: 0.25rem 0.55rem;
  border-radius: var(--pill);
  margin-bottom: 0.45rem;
}

@media (max-width: 700px) {
  .hero-visual { min-height: 420px; }
  .hero-teal-block { width: 85%; }
  .float-score { top: 0; right: 0; transform: scale(0.9); transform-origin: top right; }
  .float-job { left: -4%; bottom: 12%; transform: scale(0.9); }
  .float-ai { display: none; }
}

/* Tabs */
.tabs-section {
  padding: 1rem 0 4.5rem;
}
.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 0.65rem;
  margin-bottom: 2.5rem;
  max-width: 640px;
  margin-inline: auto;
}
.ptab {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.85rem 0.75rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 10px 10px 0 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.15s, background 0.15s;
}
.ptab:hover { background: var(--mint); color: var(--charcoal); }
.ptab.is-active {
  color: var(--charcoal);
  border-bottom-color: var(--teal);
}
.ptab:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 2px;
}
.ptab-icon { display: flex; }

.tab-panel[hidden] { display: none !important; }
.panel-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 860px) {
  .panel-grid { grid-template-columns: 1fr 1.1fr; gap: 3rem; }
}
.panel-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin-bottom: 0.85rem;
}
.panel-copy p {
  color: var(--charcoal-soft);
  margin-bottom: 1.35rem;
  max-width: 32rem;
}
.panel-mock {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  min-height: 260px;
}
.mint-bg { background: var(--mint); }
.center-mock {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.mock-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
.mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.mock-dot.green { background: #22A06B; }
.mock-bullet {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  background: var(--gray-bg);
  padding: 0.85rem;
  border-radius: 8px;
  margin-bottom: 0.85rem;
}
.mock-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.mock-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  background: var(--gray-bg);
  border-radius: var(--pill);
  color: var(--muted);
}

.match-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.match-before, .match-after {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.match-pct {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.match-pct.low { color: var(--coral); }
.match-pct.high { color: var(--teal); }
.match-arrow { font-size: 1.5rem; color: var(--muted); }
.kw-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}
.kw {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: var(--pill);
}
.kw.ok { background: var(--mint); color: var(--teal); }
.kw.miss { background: #FDECEA; color: var(--maroon); text-decoration: line-through; }

.big-ring { position: relative; width: 140px; height: 140px; }
.big-ring-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.big-ring-label strong {
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}
.big-ring-label span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* Feature band */
.feature-band {
  padding: 5rem 0;
  background: var(--mint);
}
.feature-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1.15fr; }
}
.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}
.feature-copy h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.9rem;
}
.feature-copy > p {
  color: var(--charcoal-soft);
  margin-bottom: 1.25rem;
  max-width: 30rem;
}
.check-list {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.check-list li {
  padding-left: 1.6rem;
  position: relative;
  font-weight: 500;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}

.side-mock {
  display: grid;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
@media (min-width: 560px) {
  .side-mock { grid-template-columns: 1.1fr 0.9fr; }
}
.side-mock-left, .side-mock-right {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 1.1rem;
}
.sm-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.45rem;
}
.sm-job { font-weight: 800; margin-bottom: 0.5rem; }
.sm-desc { font-size: 0.85rem; color: var(--charcoal-soft); margin-bottom: 0.75rem; }
.sm-skills { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.sm-skills span {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--mint);
  color: var(--teal);
  padding: 0.3rem 0.6rem;
  border-radius: var(--pill);
}
.ring-mini {
  text-align: center;
  margin-bottom: 1rem;
}
.ring-mini strong {
  display: block;
  font-size: 2rem;
  color: var(--teal);
  letter-spacing: -0.04em;
}
.ring-mini span { font-size: 0.8rem; color: var(--muted); }
.side-mock-right .bar-row { grid-template-columns: 62px 1fr; margin-bottom: 0.45rem; }

/* How */
.how {
  padding: 5rem 0;
  background: var(--white);
}
.section-title {
  text-align: center;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.65rem;
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.75rem;
  font-size: 1.05rem;
}
.steps {
  display: grid;
  gap: 1.25rem;
  counter-reset: none;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}
.step {
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--teal);
  color: var(--white);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}
.step p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}

/* Templates band — dark teal */
.templates-band {
  padding: 4.5rem 0;
  background: var(--teal);
  color: var(--white);
  text-align: center;
}
.templates-band h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  margin-bottom: 0.65rem;
}
.templates-band > .container > p {
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
  max-width: 36rem;
  margin-inline: auto;
}
.template-cards {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 700px) {
  .template-cards { grid-template-columns: repeat(3, 1fr); }
}
.tpl-card {
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem 1.15rem 1.5rem;
  text-align: left;
  min-height: 220px;
}
.tpl-accent {
  height: 6px;
  border-radius: var(--pill);
  margin-bottom: 1rem;
}
.accent-teal .tpl-accent { background: var(--teal); }
.accent-maroon .tpl-accent { background: var(--maroon); }
.accent-charcoal .tpl-accent { background: var(--charcoal); }
.tpl-name { font-weight: 800; font-size: 1.1rem; }
.tpl-role {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.tpl-lines {
  height: 90px;
  background:
    linear-gradient(var(--mint-2), var(--mint-2)) 0 0 / 100% 8px no-repeat,
    linear-gradient(var(--mint-2), var(--mint-2)) 0 18px / 88% 8px no-repeat,
    linear-gradient(var(--mint-2), var(--mint-2)) 0 36px / 92% 8px no-repeat,
    linear-gradient(var(--mint-2), var(--mint-2)) 0 54px / 70% 8px no-repeat,
    linear-gradient(var(--mint-2), var(--mint-2)) 0 72px / 80% 8px no-repeat;
  border-radius: 4px;
}

/* Social */
.social {
  padding: 5rem 0;
  background: var(--white);
}
.testimonials {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .testimonials { grid-template-columns: repeat(3, 1fr); }
}
.t-card {
  margin: 0;
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.t-card p {
  font-size: 0.98rem;
  color: var(--charcoal-soft);
  flex: 1;
}
.t-card footer {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.t-card strong { font-size: 0.95rem; }
.t-card span { font-size: 0.82rem; color: var(--muted); }

/* Pricing */
.pricing {
  padding: 5rem 0;
  background: var(--gray-bg);
}
.price-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 780px;
  margin-inline: auto;
}
@media (min-width: 700px) {
  .price-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}
.price-card {
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}
.price-free {
  background: var(--white);
  border: 1px solid var(--border);
}
.price-plus {
  background: var(--teal);
  color: var(--white);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.plus-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--pill);
}
.price-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.price-plus h3 { text-transform: lowercase; }
.price-amount {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.75;
}
.price-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.price-card li {
  padding-left: 1.6rem;
  position: relative;
  font-size: 0.95rem;
}
.price-free li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 800;
}
.price-plus li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--white);
  font-weight: 800;
}
.price-plus .btn-outline {
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}

/* Final CTA */
.final-cta {
  padding: 5rem 0;
  text-align: center;
  background: var(--white);
}
.final-cta h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  margin-bottom: 0.75rem;
}
.final-cta p {
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 1.1rem;
}

/* Footer */
.site-footer {
  background: var(--gray-bg);
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
.footer-brand p {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 16rem;
}
.site-footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.85rem;
  color: var(--charcoal);
}
.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site-footer li a {
  font-size: 0.92rem;
  color: var(--muted);
}
.site-footer li a:hover { color: var(--teal); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
}

/* ——— CRO additions (keep TealHQ language) ——— */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cta-short { display: none; }
@media (max-width: 1100px) and (min-width: 900px) {
  .btn-nav-cta .cta-full { display: none; }
  .btn-nav-cta .cta-short { display: inline; }
}
@media (max-width: 899px) {
  .btn-nav-cta .cta-full { display: inline; }
  .btn-nav-cta .cta-short { display: none; }
}

.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.friction-line {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
}

.cta-micro-proof {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
}
.stars {
  color: var(--yellow);
  letter-spacing: 0.02em;
  font-size: 0.95rem;
  line-height: 1;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.35rem;
  width: 100%;
  max-width: 420px;
}
.waitlist-form input[type="email"] {
  flex: 1 1 180px;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--pill);
  background: var(--white);
  color: var(--charcoal);
  min-width: 0;
}
.waitlist-form input[type="email"]:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 2px;
  border-color: var(--teal);
}
.waitlist-form .btn { flex: 0 0 auto; }
.waitlist-msg {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal);
}

/* Proof strip under hero */
.proof-strip {
  background: var(--mint);
  border-top: 1px solid var(--mint-2);
  border-bottom: 1px solid var(--mint-2);
  padding: 1.15rem 0;
  margin-top: -0.5rem;
}
.proof-strip-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}
.proof-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
}
.proof-stat strong {
  font-weight: 800;
  color: var(--charcoal);
}
.proof-quote {
  margin: 0;
  max-width: 36rem;
  font-size: 0.9rem;
  color: var(--charcoal-soft);
}
.proof-quote p { margin: 0 0 0.25rem; font-style: italic; }
.proof-quote footer {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: normal;
}

.mid-cta {
  text-align: center;
  margin-top: 2.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
}

.price-assurance {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}
.price-assurance.on-teal {
  color: rgba(255, 255, 255, 0.85);
}

.btn-outline-on-teal {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-on-teal:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* FAQ */
.faq {
  padding: 5rem 0;
  background: var(--white);
}
.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--mint);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.1rem 1.25rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--charcoal);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--teal);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: -3px;
}
.faq-item p {
  padding: 0 1.25rem 1.15rem;
  margin: 0;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* Sticky mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 -8px 28px rgba(26, 26, 26, 0.08);
}
.sticky-cta:not([hidden]) {
  display: block;
}
.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  max-width: var(--max);
  margin-inline: auto;
}
.sticky-cta .btn {
  flex: 1;
  padding: 0.9rem 1rem;
  font-size: 0.92rem;
}
.sticky-friction {
  display: none;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.sticky-dismiss {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
  font-size: 1.35rem;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  font-family: inherit;
}
.sticky-dismiss:focus-visible {
  outline: 3px solid var(--indigo);
  outline-offset: 2px;
}

@media (max-width: 899px) {
  .sticky-cta:not([hidden]) { display: block; }
  body.has-sticky-cta { padding-bottom: 88px; }
}
@media (min-width: 400px) and (max-width: 899px) {
  .sticky-friction { display: block; }
}
@media (min-width: 900px) {
  .sticky-cta { display: none !important; }
}

.final-cta .friction-line {
  margin-top: 0.75rem;
}

/* ——— Competitor-pattern absorption (TealHQ language kept) ——— */

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

/* Stat strip */
.stat-strip {
  background: var(--teal);
  color: var(--white);
  padding: 1.5rem 0;
}
.stat-strip-inner {
  display: grid;
  gap: 1.25rem;
  text-align: center;
}
@media (min-width: 640px) {
  .stat-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.stat-item strong {
  display: block;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.2rem;
}
.stat-item span {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
}

/* Errors that kill your CV */
.errors-section {
  padding: 5rem 0;
  background: var(--white);
}
.ats-explainer {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  background: var(--mint);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
}
.ats-explainer h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--teal);
}
.ats-explainer p {
  font-size: 0.95rem;
  color: var(--charcoal-soft);
}

.errors-demo {
  max-width: 560px;
  margin-inline: auto;
}
.errors-demo-score {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}
.errors-score-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.errors-score-value {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--teal);
  line-height: 1;
  transition: color 0.35s ease;
}
.errors-score-value.is-dropping {
  color: var(--coral);
}
.errors-score-hint {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

.fake-cv {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.5rem 1.35rem 1.75rem;
  overflow: visible;
}
.fake-cv-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--mint-2);
}
.fake-cv-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ccc, #999);
  flex-shrink: 0;
  position: relative;
  transition: box-shadow 0.35s ease, outline 0.35s ease;
}
.fake-cv-name {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}
.fake-cv-role {
  font-weight: 600;
  color: var(--teal);
  font-size: 0.9rem;
}
.fake-cv-contact {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}
.fake-cv-sec {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.fake-cv-block { margin-bottom: 1rem; }
.fake-cv-line {
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.45;
  transition: background 0.35s ease, outline 0.35s ease;
  border-radius: 4px;
  padding: 0.15rem 0.25rem;
  margin: 0 -0.25rem;
}
.fake-cv-line.muted { color: var(--muted); font-size: 0.82rem; }

.fake-cv [data-error].is-flagged,
.fake-cv-photo.is-flagged {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  background-color: #FDECEA;
}
.fake-cv-photo.is-flagged {
  box-shadow: 0 0 0 3px rgba(240, 112, 96, 0.35);
  outline: none;
}

.error-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  background: var(--coral);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: var(--pill);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(6px) scale(0.96);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
}
.error-pill.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.error-pill[data-pill="foto"] {
  top: 0.35rem;
  left: 3.5rem;
}
.error-pill[data-pill="email"] {
  top: 4.1rem;
  right: 0.75rem;
}
.error-pill[data-pill="metricas"] {
  bottom: 5.5rem;
  right: -0.25rem;
}
@media (max-width: 560px) {
  .error-pill[data-pill="metricas"] {
    right: 0.5rem;
    bottom: 4.5rem;
  }
  .error-pill[data-pill="email"] {
    top: auto;
    bottom: 8.5rem;
    right: 0.5rem;
  }
}

.errors-caption {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  max-width: 36rem;
  margin-inline: auto;
}

/* Pricing BR grid */
.price-grid-br {
  max-width: 1040px;
  gap: 1.35rem;
}
@media (min-width: 900px) {
  .price-grid-br {
    grid-template-columns: 1fr 1fr 1fr;
    align-items: stretch;
  }
}
.price-tagline {
  font-size: 0.9rem;
  color: var(--muted);
  margin: -0.85rem 0 1.25rem;
}
.price-tagline.on-teal {
  color: rgba(255, 255, 255, 0.85);
}
.price-credits {
  background: var(--white);
  border: 1px solid var(--border);
}
.price-credits .price-tagline {
  margin-top: 0;
}
.credit-tiers {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.75rem;
  flex: 1;
  list-style: none;
  padding: 0;
}
.credit-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--gray-bg);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
}
.credit-tier.is-highlight {
  background: var(--mint);
  border-color: var(--teal);
}
.credit-tier strong {
  display: block;
  font-size: 0.98rem;
}
.credit-tier span {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}
.credit-price {
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--charcoal);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.save-badge {
  display: inline-block !important;
  background: var(--yellow);
  color: var(--charcoal) !important;
  font-weight: 800 !important;
  font-size: 0.68rem !important;
  padding: 0.2rem 0.5rem;
  border-radius: var(--pill);
  margin-top: 0.2rem;
}

.price-credits li::before { content: none !important; }

/* Testimonials 2x3 on wide */
@media (min-width: 800px) {
  .social .testimonials { grid-template-columns: repeat(3, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  .error-pill,
  .errors-score-value,
  .fake-cv-line,
  .fake-cv-photo {
    transition: none;
  }
}
