:root {
  --bg: #f7f9fc;
  --surface: #ffffff;
  --surface-2: #eef4ff;
  --text: #142033;
  --muted: #5c6b80;
  --primary: #1f4fd6;
  --primary-dark: #14379a;
  --accent: #0ea5a4;
  --border: #d9e2f0;
  --success: #0f766e;
  --shadow: 0 12px 36px rgba(20, 32, 51, 0.08);
  --radius: 18px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
.brand { font-weight: 800; font-size: 1.1rem; letter-spacing: .2px; color: var(--text); }
.brand span { color: var(--primary); }
.nav { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.nav a { color: var(--text); font-weight: 600; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.25rem; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: .2s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); text-decoration: none; }
.btn-secondary { background: #fff; color: var(--text); border-color: var(--border); }
.btn-secondary:hover { background: var(--surface-2); text-decoration: none; }
.hero {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, #eef4ff 0%, #f7f9fc 100%);
}
.hero-grid, .grid-2, .grid-3, .pricing-grid, .card-grid {
  display: grid; gap: 1.5rem;
}
.hero-grid { grid-template-columns: 1.2fr .8fr; align-items: center; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3, .pricing-grid, .card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.kicker {
  display: inline-block; font-size: .9rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .75rem;
}
.hero h1, h1 { font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.05; margin: 0 0 1rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); line-height: 1.15; margin: 0 0 1rem; }
h3 { font-size: 1.25rem; line-height: 1.2; margin: 0 0 .75rem; }
p.lead { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.hero-card, .card, .price-card, .notice, .faq-item, .sample-resume, .form-shell {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card, .card, .price-card, .notice, .faq-item, .sample-resume { padding: 1.5rem; }
.section { padding: 4rem 0; }
.section.alt { background: #fff; }
.list-check, .footer-links, .clean-list { list-style: none; padding: 0; margin: 0; }
.list-check li, .clean-list li { margin: .65rem 0; padding-left: 1.6rem; position: relative; }
.list-check li::before, .clean-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--success); font-weight: 800;
}
.stat {
  padding: 1rem 1.1rem; background: #fff; border: 1px solid var(--border);
  border-radius: 16px; text-align: center;
}
.stat strong { display: block; font-size: 1.6rem; }
.price-card { position: relative; }
.price-card.featured { border: 2px solid var(--primary); transform: translateY(-4px); }
.badge {
  display: inline-block; background: var(--primary); color: #fff; font-size: .78rem;
  font-weight: 800; padding: .35rem .7rem; border-radius: 999px; margin-bottom: .85rem;
}
.price { font-size: 2.2rem; font-weight: 800; margin: .4rem 0; }
.small, small { color: var(--muted); }
.notice { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }
.cta-box {
  background: linear-gradient(135deg, #1f4fd6, #0f766e);
  color: #fff; border-radius: 24px; padding: 2rem; box-shadow: var(--shadow);
}
.cta-box a { color: #fff; }
.steps { counter-reset: step; }
.steps li { list-style: none; position: relative; padding-left: 3rem; margin: 1rem 0; }
.steps li::before {
  counter-increment: step; content: counter(step);
  position: absolute; left: 0; top: 0; width: 2rem; height: 2rem;
  border-radius: 999px; background: var(--primary); color: #fff; display: grid; place-items: center;
  font-weight: 800;
}
footer {
  padding: 2rem 0 3rem; border-top: 1px solid var(--border); background: #fff;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.5rem; align-items: start; }
.footer-links li { margin: .45rem 0; }
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 16px; overflow: hidden; }
th, td { padding: .95rem 1rem; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
th { background: #f3f7ff; }
.faq-item + .faq-item { margin-top: 1rem; }
.sample-header {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 1rem;
}
.resume-section + .resume-section { margin-top: 1.25rem; }
.resume-kpis { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.resume-kpi {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 1rem;
}
.form-shell { padding: 1rem; overflow: hidden; }
.form-shell iframe { width: 100%; min-height: 1200px; border: none; }
.callout {
  border-left: 4px solid var(--accent); padding: 1rem 1.1rem; background: #f1fbfb; border-radius: 12px;
}
.note-strip {
  display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem;
}
.note-strip span {
  background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: .45rem .8rem; font-weight: 600;
}
@media (max-width: 960px) {
  .hero-grid, .grid-2, .grid-3, .pricing-grid, .card-grid, .footer-grid, .resume-kpis { grid-template-columns: 1fr; }
  .nav-wrap { align-items: flex-start; flex-direction: column; }
  .hero { padding-top: 3rem; }
  .price-card.featured { transform: none; }
}
@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { width: min(var(--container), calc(100% - 1rem)); }
  .section { padding: 3rem 0; }
  .hero-card, .card, .price-card, .notice, .faq-item, .sample-resume { padding: 1.1rem; }
  th, td { padding: .8rem; }
  .btn { width: 100%; }
  .nav { width: 100%; }
  .nav a { width: 100%; }
  .note-strip span { width: 100%; text-align: center; }
  .form-shell iframe { min-height: 1400px; }
}
