/* ============================================================
   MissionCorp Automation — ai.missioncorpgroup.com
   Modern dark theme · electric blue → violet
   ============================================================ */
:root {
  --bg:        #07070f;
  --bg-2:      #0b0b16;
  --bg-3:      #10101f;
  --surface:   rgba(255,255,255,0.035);
  --surface-2: rgba(255,255,255,0.06);
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(255,255,255,0.14);

  --accent:    #5b7cff;   /* electric blue */
  --accent-2:  #a855f7;   /* violet */
  --accent-3:  #22d3ee;   /* cyan highlight */
  --grad:      linear-gradient(135deg, #5b7cff 0%, #a855f7 100%);
  --grad-soft: linear-gradient(135deg, rgba(91,124,255,0.18), rgba(168,85,247,0.18));

  --text:      #eef0f7;
  --muted:     #a3a8bd;
  --faint:     #6b7088;

  --ok:        #34d399;
  --err:       #fb7185;

  --display: "Space Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --mono:    "Space Grotesk", ui-monospace, SFMono-Regular, Menlo, monospace;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --header-h: 70px;
  --r: 16px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 88px; }
html, body { overflow-x: clip; max-width: 100%; }
body {
  margin: 0; font-family: var(--body); font-size: 16px; line-height: 1.65;
  color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
}
/* Ambient background glows */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(900px 500px at 80% -5%, rgba(168,85,247,0.16), transparent 60%),
    radial-gradient(800px 500px at 5% 8%, rgba(91,124,255,0.16), transparent 55%),
    radial-gradient(700px 600px at 50% 110%, rgba(34,211,238,0.08), transparent 60%);
}
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; display: block; }
h1,h2,h3,h4 { font-family: var(--display); color: #fff; margin: 0; line-height: 1.12; font-weight: 600; letter-spacing: -0.02em; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--accent-3); margin: 0 0 18px;
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--accent-3); opacity: .7; }

.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--display);
  font-size: 14.5px; font-weight: 600; letter-spacing: .01em; padding: 14px 26px; border-radius: 10px;
  cursor: pointer; border: 1px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px rgba(91,124,255,0.35); }
.btn-primary:hover { box-shadow: 0 16px 40px rgba(124,92,255,0.5); }
.btn-ghost { background: var(--surface); color: #fff; border-color: var(--border-2); }
.btn-ghost:hover { background: var(--surface-2); }
.btn-lg { padding: 16px 32px; font-size: 15.5px; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(7,7,15,0.6);
  backdrop-filter: saturate(160%) blur(14px); border-bottom: 1px solid var(--border); }
.header .wrap { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 11px; }
.brand:hover { text-decoration: none; }
.brand .logo { width: 34px; height: 34px; border-radius: 9px; background: var(--grad); display: grid; place-items: center;
  box-shadow: 0 6px 18px rgba(124,92,255,0.45); }
.brand .logo svg { width: 19px; height: 19px; }
.brand .bt { display: flex; flex-direction: column; line-height: 1.05; }
.brand .bt b { font-family: var(--display); color: #fff; font-weight: 600; font-size: 16px; letter-spacing: -0.01em; }
.brand .bt span { font-family: var(--mono); font-size: 9.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--faint); }
.nav { display: flex; align-items: center; gap: 30px; }
.nav .links { display: flex; gap: 28px; }
.nav .links a { color: var(--muted); font-size: 14px; font-weight: 500; }
.nav .links a:hover { color: #fff; text-decoration: none; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--border-2); background: var(--surface);
  border-radius: 10px; cursor: pointer; padding: 0; position: relative; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px; background: #fff; border-radius: 2px;
  transform: translateX(-50%); transition: transform .25s, top .25s, background .15s; }
.menu-toggle span { top: 50%; margin-top: -1px; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.header.menu-open .menu-toggle span { background: transparent; }
.header.menu-open .menu-toggle span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
.header.menu-open .menu-toggle span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(64px, 11vw, 130px) 0 clamp(48px,7vw,80px); }
.hero-badge { display: inline-flex; align-items: center; gap: 9px; padding: 7px 15px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--border-2); font-size: 13px; color: var(--muted); margin-bottom: 26px; }
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 10px var(--ok); }
.hero h1 { font-size: clamp(36px, 6vw, 68px); line-height: 1.05; font-weight: 700; max-width: 16ch; }
.hero .sub { font-size: clamp(17px, 2vw, 21px); color: var(--muted); max-width: 56ch; margin: 22px 0 34px; line-height: 1.6; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-metrics { display: flex; flex-wrap: wrap; gap: 36px; margin-top: clamp(44px,6vw,68px); padding-top: 30px; border-top: 1px solid var(--border); }
.hero-metrics .m .n { font-family: var(--display); font-size: clamp(26px,3vw,34px); font-weight: 700; }
.hero-metrics .m .l { font-size: 13px; color: var(--faint); letter-spacing: .04em; }

/* ---------- Section scaffold ---------- */
section { padding: clamp(64px, 9vw, 112px) 0; }
.section-head { max-width: 720px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 46px); font-weight: 700; }
.section-head p { color: var(--muted); margin: 16px 0 0; font-size: 17px; }

/* Pain / cost section */
.pain { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pain-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pain-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 26px; }
.pain-card .ic { width: 42px; height: 42px; border-radius: 10px; background: rgba(251,113,133,0.12);
  color: var(--err); display: grid; place-items: center; margin-bottom: 18px; }
.pain-card h3 { font-size: 18px; margin-bottom: 8px; }
.pain-card p { color: var(--muted); font-size: 14.5px; margin: 0; }

/* Services */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.svc { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 26px 30px; overflow: hidden; transition: transform .2s, border-color .2s, background .2s; }
.svc:hover { transform: translateY(-4px); border-color: var(--border-2); background: var(--surface-2); }
.svc::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: var(--grad); opacity: 0; transition: opacity .2s; }
.svc:hover::before { opacity: 1; }
.svc .ic { width: 46px; height: 46px; border-radius: 11px; background: var(--grad-soft); border: 1px solid var(--border-2);
  display: grid; place-items: center; color: #cdd6ff; margin-bottom: 18px; }
.svc .ic svg { width: 23px; height: 23px; }
.svc { cursor: pointer; }
.svc h3 { font-size: 17.5px; margin-bottom: 9px; }
.svc > p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }
.svc:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.svc-more { display: inline-flex; align-items: center; margin-top: 16px; font-family: var(--display);
  font-size: 13.5px; font-weight: 600; color: var(--accent); transition: transform .15s; }
.svc:hover .svc-more { transform: translateX(3px); }

/* Service detail modal */
.modal.modal-lg { max-width: 640px; width: 100%; text-align: left; max-height: 88vh; padding: 0;
  display: flex; flex-direction: column; overflow: hidden; }
.svc-modal-head { flex: 0 0 auto; display: flex; align-items: center; gap: 14px; padding: 24px 26px 20px;
  border-bottom: 1px solid var(--border); }
.svc-modal-head h3 { flex: 1; font-size: 22px; }
.svc-modal-ic { width: 46px; height: 46px; flex: 0 0 auto; border-radius: 12px; background: var(--grad-soft);
  border: 1px solid var(--border-2); display: grid; place-items: center; color: #cdd6ff; }
.svc-modal-ic svg { width: 24px; height: 24px; }
.modal-x { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 8px; border: 1px solid var(--border-2);
  background: var(--surface); color: #fff; font-size: 20px; line-height: 1; cursor: pointer; }
.modal-x:hover { background: var(--surface-2); }
.svc-modal-body { flex: 1 1 auto; overflow-y: auto; padding: 22px 26px; }
.svc-modal-body p { color: #c9cde0; font-size: 15.5px; line-height: 1.7; margin: 0 0 14px; }
.svc-modal-body h4 { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-3);
  font-family: var(--mono); margin: 20px 0 10px; }
.svc-modal-body ul { margin: 0 0 14px; padding-left: 4px; list-style: none; }
.svc-modal-body li { position: relative; padding-left: 26px; margin-bottom: 9px; color: #c9cde0; font-size: 15px; }
.svc-modal-body li::before { content: ""; position: absolute; left: 2px; top: 6px; width: 12px; height: 7px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(-45deg); }
.svc-modal-body .svc-outcome { color: #fff; background: var(--grad-soft); border: 1px solid var(--border-2);
  border-radius: 10px; padding: 14px 16px; font-size: 15px; margin-bottom: 0; }
.svc-modal-foot { flex: 0 0 auto; padding: 16px 26px; border-top: 1px solid var(--border); }
.svc-modal-foot .btn { display: flex; width: 100%; justify-content: center; margin: 0; }

/* ---------- ROI Calculator ---------- */
.calc { background: var(--bg-2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.calc-panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 32px 30px; }
.calc-field { margin-bottom: 22px; }
.calc-field label { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.calc-field label .v { font-family: var(--mono); color: var(--accent-3); font-size: 15px; }
.calc-field input[type="range"] { width: 100%; accent-color: #7c6cff; height: 4px; }
.calc-field .num { width: 100%; background: var(--bg-3); border: 1px solid var(--border-2); color: #fff;
  font-family: var(--body); font-size: 15px; padding: 11px 13px; border-radius: 9px; }
.calc-field .num:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,124,255,.2); }
.calc-result { background: linear-gradient(160deg, rgba(91,124,255,0.12), rgba(168,85,247,0.10));
  border: 1px solid var(--border-2); border-radius: var(--r); padding: 32px 30px; }
.calc-result .rlabel { font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.calc-big { font-family: var(--display); font-size: clamp(40px,6vw,60px); font-weight: 700; line-height: 1.05; margin: 6px 0 2px; }
.calc-sub { color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.calc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.calc-stat { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px 18px; }
.calc-stat .n { font-family: var(--display); font-size: 22px; font-weight: 700; }
.calc-stat .l { font-size: 12px; color: var(--faint); letter-spacing: .03em; }
.calc-note { font-size: 12px; color: var(--faint); margin-top: 18px; }
.calc-result .btn { margin-top: 24px; width: 100%; justify-content: center; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; counter-reset: s; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; position: relative; }
.step .n { font-family: var(--mono); font-size: 13px; color: var(--accent-3); margin-bottom: 14px; }
.step h3 { font-size: 17px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; margin: 0; }

/* ---------- Urgency band ---------- */
.urgency { text-align: center; }
.urgency .box { background: var(--grad-soft); border: 1px solid var(--border-2); border-radius: 24px; padding: clamp(40px,6vw,72px) clamp(24px,5vw,64px); }
.urgency h2 { font-size: clamp(28px,4vw,46px); max-width: 22ch; margin: 0 auto 18px; }
.urgency p { color: var(--muted); font-size: 18px; max-width: 60ch; margin: 0 auto 30px; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; background: var(--surface); margin-bottom: 12px; overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; color: #fff;
  font-family: var(--display); font-size: 16.5px; font-weight: 600; padding: 20px 22px; display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-q .pm { flex: 0 0 auto; width: 22px; height: 22px; position: relative; transition: transform .2s; }
.faq-q .pm::before, .faq-q .pm::after { content: ""; position: absolute; background: var(--accent-3); border-radius: 2px; }
.faq-q .pm::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq-q .pm::after { left: 10px; top: 2px; bottom: 2px; width: 2px; transition: opacity .2s; }
.faq-item.open .pm::after { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq-a p { color: var(--muted); padding: 0 22px 20px; margin: 0; font-size: 15px; }

/* ---------- Quote form ---------- */
.quote { background: var(--bg-2); border-top: 1px solid var(--border); }
.quote-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px,5vw,64px); align-items: start; }
.quote-info h2 { font-size: clamp(28px,4vw,42px); }
.quote-info p { color: var(--muted); margin: 16px 0 0; }
.quote-info .points { list-style: none; padding: 0; margin: 26px 0 0; }
.quote-info .points li { position: relative; padding-left: 28px; margin-bottom: 14px; color: var(--text); font-size: 15px; }
.quote-info .points li::before { content: ""; position: absolute; left: 2px; top: 6px; width: 12px; height: 7px;
  border-left: 2px solid var(--accent-3); border-bottom: 2px solid var(--accent-3); transform: rotate(-45deg); }
.consult-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }
.consult-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: clamp(22px,3vw,30px); }
.consult-card-title { font-size: 19px; display: flex; align-items: center; gap: 9px; }
.consult-card-title .cc-ic { font-size: 18px; }
.consult-card-sub { color: var(--muted); font-size: 14px; margin: 8px 0 20px; }
.calendly-inline-widget { border-radius: 12px; overflow: hidden; background: var(--bg-3); border: 1px solid var(--border); }
/* Compact booking panel */
.book-card { display: flex; flex-direction: column; }
.book-points { list-style: none; margin: 18px 0 24px; padding: 0; }
.book-points li { position: relative; padding-left: 28px; margin-bottom: 13px; color: var(--text); font-size: 15px; }
.book-points li::before { content: ""; position: absolute; left: 2px; top: 6px; width: 12px; height: 7px;
  border-left: 2px solid var(--accent-3); border-bottom: 2px solid var(--accent-3); transform: rotate(-45deg); }
.book-btn { width: 100%; justify-content: center; margin-top: auto; }
.book-note { color: var(--faint); font-size: 12.5px; margin: 14px 0 0; text-align: center; }
.form-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: clamp(22px,3vw,30px); }
.field { margin-bottom: 13px; }
.field label { display: block; font-size: 12.5px; font-weight: 600; color: #fff; margin-bottom: 6px; }
.req { color: var(--accent-2); }
.field input, .field textarea, .field select {
  width: 100%; background: var(--bg-3); border: 1px solid var(--border-2); color: #fff; font-family: var(--body);
  font-size: 14.5px; padding: 10px 12px; border-radius: 9px; transition: border-color .15s, box-shadow .15s; }
.field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(91,124,255,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.chk { display: flex; gap: 8px; align-items: center; background: var(--bg-3); border: 1px solid var(--border-2);
  border-radius: 8px; padding: 8px 10px; cursor: pointer; font-size: 12.5px; line-height: 1.3; color: var(--text); transition: border-color .15s, background .15s; }
.chk:hover { border-color: var(--accent); }
.chk input { width: 15px; height: 15px; margin: 0; accent-color: #7c6cff; flex: 0 0 auto; }
.chk.checked { border-color: var(--accent); background: rgba(91,124,255,0.08); }
.btn-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-note { font-size: 12px; color: var(--faint); margin: 14px 0 0; }
.form-status { display: none; margin-top: 14px; padding: 12px 15px; border-radius: 10px; font-size: 14px; }
.form-status.ok { display: block; background: rgba(52,211,153,0.12); border: 1px solid rgba(52,211,153,0.4); color: #6ee7b7; }
.form-status.err { display: block; background: rgba(251,113,133,0.12); border: 1px solid rgba(251,113,133,0.4); color: #fda4af; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 56px 0 36px; background: var(--bg-2); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.footer p { color: var(--muted); font-size: 14px; margin: 14px 0 0; max-width: 40ch; }
.footer h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--faint); margin: 0 0 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; font-size: 14px; }
.footer a { color: var(--muted); }
.footer a:hover { color: #fff; }
.footer-bottom { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; font-size: 13px; color: var(--faint); }

/* ---------- Modal ---------- */
.modal-overlay { position: fixed; inset: 0; z-index: 200; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(3,3,8,0.7); backdrop-filter: blur(5px); opacity: 0; pointer-events: none; transition: opacity .22s; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal { background: var(--bg-3); border: 1px solid var(--border-2); border-top: 3px solid transparent;
  border-image: var(--grad) 1; max-width: 460px; width: 100%; border-radius: 16px; padding: 40px 36px 32px; text-align: center;
  transform: translateY(14px) scale(.98); transition: transform .25s; }
.modal-overlay.open .modal { transform: none; }
.modal .ic { width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%; background: rgba(52,211,153,0.14);
  border: 1px solid rgba(52,211,153,0.4); display: grid; place-items: center; color: var(--ok); }
.modal h3 { font-size: 24px; margin-bottom: 12px; }
.modal p { color: var(--muted); margin: 0 0 26px; }
.modal .btn { width: 100%; justify-content: center; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .reveal{opacity:1;transform:none;transition:none} html{scroll-behavior:auto} }

/* ---------- Blog ---------- */
.page-hero { padding: clamp(56px,8vw,96px) 0 clamp(36px,5vw,52px); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(32px,5vw,52px); max-width: 20ch; }
.page-hero p { color: var(--muted); font-size: 18px; margin: 18px 0 0; max-width: 60ch; }
.post-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.post-card { display: flex; flex-direction: column; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px 24px 28px; transition: transform .2s, border-color .2s, background .2s; }
.post-card:hover { transform: translateY(-4px); border-color: var(--border-2); background: var(--surface-2); text-decoration: none; }
.post-card .tag { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-3); margin-bottom: 14px; }
.post-card h3 { font-size: 18.5px; line-height: 1.25; margin-bottom: 10px; color: #fff; }
.post-card p { color: var(--muted); font-size: 14px; margin: 0 0 18px; flex: 1; }
.post-card .more { font-family: var(--display); font-size: 14px; font-weight: 600; color: var(--accent); }

/* Solution pages + hub */
.crumbs { font-size: 13px; color: var(--faint); margin-bottom: 20px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: #fff; }
.answer-block { background: var(--grad-soft); border: 1px solid var(--border-2); border-radius: var(--r);
  padding: 20px 24px; margin: 0 0 26px; }
.answer-block p { color: #fff; font-size: 17px; line-height: 1.65; margin: 0; }
.sol-cluster { margin-bottom: 38px; }
.sol-cluster > h2 { font-size: 21px; margin-bottom: 8px; }
.sol-cluster > p { color: var(--muted); font-size: 14px; margin: 0 0 16px; }
.kw-list { display: flex; flex-wrap: wrap; gap: 8px; }
.kw-list a { display: inline-block; background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 7px 14px; font-size: 13px; color: var(--muted); }
.kw-list a:hover { border-color: var(--accent); color: #fff; text-decoration: none; }

/* Article */
.article { padding: clamp(40px,6vw,72px) 0 clamp(56px,8vw,90px); }
.article-body { max-width: 760px; margin: 0 auto; }
.article-body .tag { font-family: var(--mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-3); }
.article-body h1 { font-size: clamp(30px,4.6vw,46px); line-height: 1.12; margin: 14px 0 14px; }
.article-meta { color: var(--faint); font-size: 14px; margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.article-body h2 { font-size: clamp(22px,3vw,30px); margin: 40px 0 14px; }
.article-body h3 { font-size: 20px; margin: 28px 0 10px; }
.article-body p { color: #c9cde0; margin: 0 0 18px; font-size: 17px; line-height: 1.75; }
.article-body ul, .article-body ol { color: #c9cde0; margin: 0 0 20px; padding-left: 22px; font-size: 17px; line-height: 1.7; }
.article-body li { margin-bottom: 9px; }
.article-body strong { color: #fff; }
.article-body blockquote { margin: 24px 0; padding: 16px 22px; border-left: 3px solid; border-image: var(--grad) 1;
  background: var(--surface); border-radius: 8px; color: #fff; font-size: 18px; }
.article-cta { margin-top: 44px; background: var(--grad-soft); border: 1px solid var(--border-2); border-radius: var(--r); padding: 34px 30px; text-align: center; }
.article-cta h3 { font-size: 24px; margin-bottom: 10px; }
.article-cta p { color: var(--muted); margin: 0 0 22px; }
.back-link { display: inline-block; margin-bottom: 26px; font-family: var(--display); font-weight: 600; font-size: 14px; color: var(--accent); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav .links { display: none; }
  .menu-toggle { display: inline-block; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--border); padding: 8px 0 16px; box-shadow: 0 20px 40px rgba(0,0,0,.5);
    transform: translateY(-10px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s; }
  .header.menu-open .nav { transform: none; opacity: 1; pointer-events: auto; }
  .nav .links { display: flex; flex-direction: column; gap: 0; }
  .nav .links a { padding: 13px var(--gutter); border-bottom: 1px solid var(--border); }
  .nav .btn { margin: 14px var(--gutter) 0; justify-content: center; }
  .pain-grid, .svc-grid, .steps, .post-grid { grid-template-columns: repeat(2,1fr); }
  .calc-grid, .quote-grid, .consult-cols { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pain-grid, .svc-grid, .steps, .post-grid, .svc-checks, .calc-stats, .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-metrics { gap: 22px; }
}
