:root {
  --navy: #3a4f63;            /* QuickTeam slate (Call Us button) */
  --navy-2: #2c3e50;
  --peach: #ffd9c3;           /* QuickTeam gradient start */
  --grad: linear-gradient(90deg, #ffd9c3 0%, #3a4f63 100%);
  --ink: #1f2937;
  --muted: #5b6472;
  --bg: #ffffff;
  --bg-soft: #f6f8fa;
  --accent: #3a4f63;
  --accent-link: #35618c;
  --accent-soft: #fdeee3;
  --line: #e6eaee;
  --radius: 12px;
  --shadow: 0 10px 34px rgba(58, 79, 99, .12);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink); background: var(--bg); line-height: 1.68; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 900px; margin: 0 auto; padding: 0 22px; }
.skip { position: absolute; left: -9999px; top: 0; background: var(--navy); color: #fff; padding: 10px 18px; z-index: 100; border-radius: 0 0 8px 0; }
.skip:focus { left: 0; }

/* Header */
header.site { border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 50; }
header.site .bar { max-width: 1100px; margin: 0 auto; padding: 14px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { display: block; width: 151px; height: 30px; }
nav.top { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
nav.top a { color: var(--muted); text-decoration: none; font-size: 15px; font-weight: 600; padding: 4px 2px; border-bottom: 2px solid transparent; }
nav.top a:hover, nav.top a[aria-current="page"] { color: var(--navy); border-bottom-color: var(--navy); }
.btn { display: inline-block; background: var(--grad); color: #fff; text-shadow: 0 1px 2px rgba(44,62,80,.35); text-decoration: none; padding: 12px 26px; border-radius: 12px; font-weight: 700; font-size: 15px; transition: all .16s ease; border: 0; }
.btn:hover { filter: brightness(1.06); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(58,79,99,.25); }
.btn.big { padding: 15px 34px; font-size: 17px; }
.btn.solid { background: var(--navy); text-shadow: none; }
.btn.solid:hover { background: var(--navy-2); }
.btn.ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); text-shadow: none; }
.btn.ghost:hover { background: var(--navy); color: #fff; transform: none; box-shadow: none; filter: none; }

/* Breadcrumbs */
.crumbs { font-size: 13.5px; color: var(--muted); padding: 16px 0 0; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }
.crumbs span { margin: 0 6px; color: #b6bec9; }

/* Hero */
.hero { background: radial-gradient(1200px 520px at 18% -12%, var(--accent-soft) 0%, #fff 60%); padding: 40px 0 44px; border-bottom: 1px solid var(--line); }
.hero .kicker { color: var(--navy); font-weight: 800; font-size: 13px; text-transform: uppercase; letter-spacing: 1.4px; margin-bottom: 14px; }
h1 { font-size: clamp(30px, 5vw, 44px); line-height: 1.13; color: var(--navy); letter-spacing: -.6px; margin-bottom: 18px; font-weight: 800; max-width: 820px; }
.answer { font-size: 19px; color: #33404f; max-width: 780px; margin-bottom: 26px; }
.hero .actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.byline { color: var(--muted); font-size: 14px; margin-top: 20px; }
.byline time { font-weight: 600; }

/* Stat chips */
.stats { display: flex; gap: 12px; flex-wrap: wrap; margin: 26px 0 0; }
.stat { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 12px 18px; box-shadow: 0 3px 14px rgba(22,35,58,.05); }
.stat b { display: block; color: var(--navy); font-size: 20px; letter-spacing: -.3px; }
.stat small { color: var(--muted); font-size: 13px; }

/* Key facts (GEO extraction block) */
.keyfacts { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 28px 30px; margin: 38px 0 8px; }
.keyfacts h2 { color: #fff; margin: 0 0 14px; font-size: 20px; }
.keyfacts ul { list-style: none; }
.keyfacts li { padding: 7px 0 7px 28px; position: relative; color: #dbe4f0; font-size: 16px; }
.keyfacts li::before { content: "✓"; position: absolute; left: 2px; color: var(--peach); font-weight: 800; }
.keyfacts li b { color: #fff; }

/* Sections */
main section.block { padding: 26px 0 6px; }
h2 { font-size: clamp(22px, 3.4vw, 29px); color: var(--navy); margin: 30px 0 12px; letter-spacing: -.4px; line-height: 1.25; font-weight: 800; }
p { margin-bottom: 14px; }
ul.features { list-style: none; margin: 12px 0 18px; }
ul.features li { padding: 11px 0 11px 34px; position: relative; }
ul.features li::before { content: ""; position: absolute; left: 6px; top: 19px; width: 10px; height: 10px; border-radius: 3px; background: var(--accent); transform: rotate(45deg); }
a { color: var(--accent-link); }
strong { color: var(--navy); }

/* Steps */
ol.steps { list-style: none; counter-reset: step; margin: 18px 0 10px; display: grid; gap: 14px; }
ol.steps li { counter-increment: step; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px 18px 66px; position: relative; }
ol.steps li::before { content: counter(step); position: absolute; left: 18px; top: 16px; width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 16px; }

/* Quote */
blockquote.pull { border-left: 4px solid var(--accent); background: var(--bg-soft); border-radius: 0 12px 12px 0; padding: 20px 24px; margin: 26px 0; font-size: 17.5px; color: #33404f; }
blockquote.pull footer { color: var(--muted); font-size: 14.5px; margin-top: 10px; font-style: normal; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy-2) 0%, var(--navy) 100%); border-radius: var(--radius); color: #fff; padding: 40px 34px; text-align: center; margin: 44px 0; box-shadow: var(--shadow); }
.cta-band h2 { color: #fff; margin: 0 0 8px; }
.cta-band p { color: #cfd8e2; margin-bottom: 22px; font-size: 17.5px; }
.cta-band .btn { background: var(--peach); color: var(--navy-2); text-shadow: none; }
.cta-band .btn:hover { filter: brightness(1.03); transform: translateY(-1px); }

/* FAQ */
.faq { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; margin: 34px 0 54px; }
.faq h2 { margin-top: 0; }
.faq details { border-bottom: 1px solid var(--line); padding: 4px 0; }
.faq details:last-child { border-bottom: none; }
.faq summary { cursor: pointer; font-weight: 700; color: var(--navy); padding: 14px 34px 14px 0; font-size: 17px; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 11px; font-size: 24px; color: var(--accent); font-weight: 400; transition: transform .15s ease; }
.faq details[open] summary::after { content: "+"; transform: rotate(45deg); }
.faq details p { color: var(--ink); padding: 2px 0 16px; }

/* Cards (hub) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin: 38px 0 30px; }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-decoration: none; color: var(--ink); background: #fff; transition: box-shadow .16s ease, transform .16s ease, border-color .16s ease; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); border-color: #c9d8f4; }
.card .icon { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.card h3 { color: var(--navy); font-size: 20px; margin-bottom: 8px; letter-spacing: -.2px; }
.card p { color: var(--muted); font-size: 15.5px; margin: 0 0 14px; flex: 1; }
.card .go { color: var(--accent); font-weight: 700; font-size: 15px; }

/* Footer */
footer.site { border-top: 1px solid var(--line); background: var(--bg-soft); margin-top: 30px; }
footer.site .inner { max-width: 1100px; margin: 0 auto; padding: 36px 22px 30px; }
footer.site .cols { display: flex; flex-wrap: wrap; gap: 34px; justify-content: space-between; margin-bottom: 22px; }
footer.site .about { max-width: 420px; color: var(--muted); font-size: 14.5px; }
footer.site .about .logo { margin-bottom: 10px; }
footer.site nav { display: flex; flex-direction: column; gap: 9px; }
footer.site nav h4 { color: var(--navy); font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
footer.site a { color: var(--muted); text-decoration: none; font-size: 14.5px; }
footer.site a:hover { color: var(--accent); }
footer.site .fine { color: #8b94a3; font-size: 13px; border-top: 1px solid var(--line); padding-top: 18px; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

@media (max-width: 680px) {
  nav.top { display: none; }
  .hero { padding: 30px 0 34px; }
  .faq { padding: 22px; }
  .stats { gap: 9px; }
  .stat { padding: 10px 14px; }
  ol.steps li { padding: 16px 16px 16px 60px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn, .card { transition: none; }
}
