/* Freelance Pricing & Proposal Kit — SEO landing */
:root {
  --bg: #faf9f7;
  --surface: #ffffff;
  --ink: #1a1a1a;
  --muted: #5c5c5c;
  --border: #e8e4de;
  --accent: #0f6b4c;
  --accent-hover: #0a5239;
  --accent-soft: #e8f5ef;
  --warn-bg: #fff8e8;
  --warn-border: #e8d4a0;
  --radius: 12px;
  --shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.04);
  --max: 720px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--accent); }

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

/* Header */
.site-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.header-cta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 0.4rem 0.85rem;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  white-space: nowrap;
}

.header-cta:hover { background: var(--accent-soft); }

/* Hero */
.hero {
  padding: 2.5rem 0 2rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  font-weight: 800;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 38em;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.price-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.4rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .15s, transform .1s;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover { background: var(--accent-hover); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover { border-color: var(--muted); background: var(--surface); }

.fine-print {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.hero-cover {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

/* Sections */
section {
  padding: 2.25rem 0;
}

section + section {
  border-top: 1px solid var(--border);
}

h2 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  font-weight: 750;
}

h3 {
  font-size: 1.05rem;
  margin: 0 0 0.35rem;
  font-weight: 700;
}

.muted { color: var(--muted); }

/* Problem / value cards */
.card-grid {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

@media (min-width: 560px) {
  .card-grid.two { grid-template-columns: 1fr 1fr; }
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}

.card p { margin: 0; font-size: 0.95rem; color: var(--muted); }

.card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.6rem;
  height: 1.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.check-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.98rem;
}

.check-list li:last-child { border-bottom: none; }

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 1rem;
  height: 1rem;
  background: var(--accent);
  border-radius: 50%;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 5-5L12.6 5z'/%3E%3C/svg%3E") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='white' d='M6.5 11.2 3.3 8l1.1-1.1 2.1 2.1 5-5L12.6 5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

/* Who */
.who-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 560px) {
  .who-grid { grid-template-columns: 1fr 1fr; }
}

.who-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.who-list li { margin-bottom: 0.35rem; }

/* Steps */
.steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 0.85rem 0 0.85rem 3rem;
  border-bottom: 1px solid var(--border);
}

.steps li:last-child { border-bottom: none; }

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
}

/* FAQ */
.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.6rem;
}

.faq summary {
  font-weight: 650;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
}

.faq details[open] summary::after { content: "−"; }

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Notice / disclaimer */
.notice {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

.notice strong { color: var(--ink); }

/* Final CTA band */
.cta-band {
  background: var(--ink);
  color: #f5f5f5;
  padding: 2.5rem 0;
  text-align: center;
}

.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }

.cta-band p { color: #b8b8b8; margin: 0 0 1.25rem; }

.cta-band .btn-primary {
  background: #1db978;
}

.cta-band .btn-primary:hover { background: #17a066; }

.cta-band .fine-print { color: #888; margin-top: 0.85rem; }

/* Footer */
.site-footer {
  padding: 1.5rem 0 2rem;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid var(--border);
}

.site-footer a { color: var(--muted); }

/* Skip link */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 100;
}

.skip:focus { left: 0; }

/* Before/after compare */
.compare {
  display: grid;
  gap: 0.85rem;
  margin: 1.25rem 0 1rem;
}
@media (min-width: 560px) {
  .compare { grid-template-columns: 1fr 1fr; }
}
.compare-col {
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
}
.compare-col h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}
.compare-col ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.compare-col li { margin-bottom: 0.4rem; }
.compare-col.bad { border-color: #e8c4b8; background: #fff8f5; }
.compare-col.good { border-color: #b8dcc8; background: var(--accent-soft); }
.compare-col.good h3 { color: var(--accent); }
.gap-punch {
  font-size: 1.05rem;
  font-weight: 650;
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* Sample preview */
.preview-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  box-shadow: var(--shadow);
}
.preview-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin: 0 0 0.75rem;
}
.preview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.preview-table th,
.preview-table td {
  text-align: left;
  padding: 0.55rem 0.4rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.preview-table th {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 650;
}
.preview-table tr.rec {
  background: var(--accent-soft);
}
.preview-table tr.rec td { font-weight: 600; }
.preview-note {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
.preview-box blockquote {
  margin: 0;
  padding: 0.75rem 1rem;
  border-left: 3px solid var(--accent);
  background: #f4faf7;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.55;
}
