/* Wakefield Ops — clean light theme, mobile-first */
:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --accent: #0d9488;
  --accent-hover: #0f766e;
  --accent-soft: #ccfbf1;
  --warn: #b45309;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 24px rgba(15, 23, 42, 0.06);
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1080px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 248, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 0; gap: 1rem;
}
.logo {
  font-weight: 700; font-size: 1.1rem; color: var(--ink);
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-size: 0.95rem; font-weight: 500; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--accent) !important; color: #fff !important;
  padding: 0.5rem 0.95rem; border-radius: 8px; font-weight: 600;
}
.nav-cta:hover { background: var(--accent-hover) !important; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.75rem 1.25rem; border-radius: 10px;
  font-weight: 600; font-size: 0.95rem; border: none; cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  text-decoration: none; font-family: inherit;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-secondary {
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); box-shadow: var(--shadow);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--muted); }
.btn-block { width: 100%; }
.btn:disabled, .btn.is-placeholder {
  opacity: 0.75; cursor: not-allowed;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 50% at 70% -20%, var(--accent-soft), transparent),
    var(--bg);
}
.hero-grid {
  display: grid; gap: 2.5rem; align-items: center;
}
@media (min-width: 860px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
}
.eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.15; letter-spacing: -0.03em; margin: 0 0 1rem;
}
.hero-lead { font-size: 1.1rem; color: var(--muted); margin: 0 0 1.5rem; max-width: 36rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.hero-meta { font-size: 0.9rem; color: var(--muted); }
.hero-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
.hero-card h3 { margin: 0 0 0.75rem; font-size: 1rem; }
.hero-card ul { margin: 0; padding: 0; list-style: none; }
.hero-card li {
  padding: 0.55rem 0; border-bottom: 1px solid var(--line);
  font-size: 0.95rem; display: flex; gap: 0.6rem; align-items: flex-start;
}
.hero-card li:last-child { border-bottom: none; }
.check { color: var(--accent); font-weight: 700; }

/* Sections */
section { padding: 3.5rem 0; }
.section-head { max-width: 40rem; margin-bottom: 2rem; }
.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}
.section-head p { margin: 0; color: var(--muted); }
.alt { background: var(--surface); border-block: 1px solid var(--line); }

/* Problem */
.problem-grid {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.problem-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem;
}
.problem-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.problem-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Packages */
.packages {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.package {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow);
}
.package.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow);
  position: relative;
}
.badge {
  position: absolute; top: -0.65rem; right: 1rem;
  background: var(--accent); color: #fff; font-size: 0.72rem;
  font-weight: 700; padding: 0.25rem 0.55rem; border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.package h3 { margin: 0 0 0.25rem; }
.price {
  font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; margin: 0.5rem 0;
}
.price small { font-size: 0.95rem; font-weight: 500; color: var(--muted); }
.package-desc { color: var(--muted); font-size: 0.95rem; margin: 0 0 1rem; flex: 1; }
.package ul {
  margin: 0 0 1.25rem; padding: 0; list-style: none; font-size: 0.92rem;
}
.package li { padding: 0.35rem 0; display: flex; gap: 0.5rem; }
.package .btn { margin-top: auto; }

/* Steps */
.steps {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  counter-reset: step;
}
.step {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.25rem; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 2rem; height: 2rem; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-weight: 700; font-size: 0.9rem; margin-bottom: 0.75rem;
}
.step h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Trust */
.trust-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem; box-shadow: var(--shadow);
}
.trust-box ul { margin: 0.75rem 0 0; padding-left: 1.2rem; color: var(--muted); }
.trust-box li { margin-bottom: 0.4rem; }
.trust-note {
  margin-top: 1rem; padding: 0.85rem 1rem; background: var(--accent-soft);
  border-radius: 8px; font-size: 0.9rem; color: var(--ink);
}

/* FAQ */
.faq details {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 10px; padding: 1rem 1.15rem; margin-bottom: 0.65rem;
}
.faq summary {
  font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 1.25rem; font-weight: 500; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin: 0.75rem 0 0; color: var(--muted); font-size: 0.95rem; }

/* Contact */
.contact-grid {
  display: grid; gap: 1.5rem;
}
@media (min-width: 720px) {
  .contact-grid { grid-template-columns: 1fr 1.1fr; }
}
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow);
}
label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.35rem; }
input, select, textarea {
  width: 100%; padding: 0.7rem 0.85rem; border: 1px solid var(--line);
  border-radius: 8px; font: inherit; background: var(--bg); color: var(--ink);
  margin-bottom: 0.9rem;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent-soft); border-color: var(--accent);
}
.form-status { font-size: 0.9rem; margin-top: 0.5rem; min-height: 1.25rem; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: #b91c1c; }
.config-warn {
  display: none; background: #fff7ed; border: 1px solid #fdba74; color: var(--warn);
  padding: 0.75rem 1rem; border-radius: 8px; font-size: 0.88rem; margin-bottom: 1rem;
}
.config-warn.visible { display: block; }

/* Footer */
footer {
  padding: 2rem 0; border-top: 1px solid var(--line);
  color: var(--muted); font-size: 0.9rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between; align-items: center;
}

/* Utility */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
