/* web.css — shared stylesheet for the Web Services pages (/websites/, /seo/).
   Tokens-based: NO local :root (tokens.css + a11y.css cover the palette).
   Structure mirrors kalispell.css so the pages read as siblings of the geo page. */

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

html { scroll-behavior: smooth; }

body {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── HEADER BAND ── */
.header-band {
  background: var(--navy);
  padding: 130px 40px 100px;
  text-align: center;
  position: relative; overflow: hidden;
}
.header-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(232,164,53,0.14) 0%, transparent 55%);
}
.header-eyebrow {
  position: relative; display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}
.header-band h1 {
  position: relative; font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 5vw, 54px); color: #fff;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.header-band p { position: relative; color: rgba(255,255,255,0.72); font-size: 17px; max-width: 600px; margin: 0 auto; }
.header-band .hdr-actions { position: relative; margin-top: 26px; }

/* ── LAYOUT ── */
.wrap { max-width: 1020px; margin: -64px auto 0; padding: 0 24px 30px; position: relative; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.lcard {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: 0 16px 44px -30px rgba(27,42,74,0.35);
}
.lcard-icon {
  width: 46px; height: 46px;
  background: var(--accent-light); color: var(--accent-dark);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.lcard-icon svg { width: 22px; height: 22px; }
.lcard h2 { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--navy); margin-bottom: 8px; letter-spacing: -0.01em; }
.lcard p { font-size: 14.5px; color: var(--ink-soft); }
.lcard .price { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--accent-text); letter-spacing: 0.02em; }

/* ── SECTIONS ── */
section.inner-sec { max-width: 1020px; margin: 0 auto; padding: 55px 24px; }
.sec-eyebrow { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 10px; }
.inner-sec h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.6vw, 38px); color: var(--navy); letter-spacing: -0.02em; margin-bottom: 14px; }
.inner-sec > p.lede { font-size: 16.5px; color: var(--ink-soft); max-width: 680px; margin-bottom: 28px; }
.inner-sec > p.lede a { color: var(--accent-text); font-weight: 600; }

/* proof band (navy) */
.proof-band {
  background: linear-gradient(160deg, var(--navy) 0%, #142035 100%);
  border-radius: var(--radius-lg);
  padding: 40px 38px;
}
.proof-band .sec-eyebrow { color: var(--accent); }
.proof-band h2 { color: #fff; font-family: 'DM Serif Display', serif; font-size: clamp(26px, 3.2vw, 34px); letter-spacing: -0.02em; margin-bottom: 12px; }
.proof-band > p { color: rgba(255,255,255,0.72); font-size: 15.5px; max-width: 720px; }
.proof-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.ppoint { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 18px 20px; }
.ppoint strong { display: block; color: #fff; font-size: 15px; margin-bottom: 4px; }
.ppoint span { color: rgba(255,255,255,0.66); font-size: 13.5px; line-height: 1.5; display: block; }
.ppoint a { color: var(--accent); text-decoration: none; }
.ppoint a:hover { text-decoration: underline; }
.ppoint .grades { display: inline-flex; gap: 6px; align-items: center; margin-top: 8px; font-size: 12.5px; color: rgba(255,255,255,0.66); }
.ppoint .grades b { display: inline-block; background: rgba(255,255,255,0.12); color: #fff; border-radius: 6px; padding: 1px 8px; font-weight: 600; }
.ppoint .grades b.after { background: var(--accent); color: var(--navy); }

/* service list */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.svc {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px 22px; font-size: 14.5px; color: var(--ink-soft);
}
.svc strong { display: block; color: var(--navy); font-size: 15.5px; margin-bottom: 3px; }

/* two-column plain-talk block */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.split .col { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 26px 28px; }
.split h3 { font-family: 'DM Serif Display', serif; font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.split ul { list-style: none; }
.split li { position: relative; padding-left: 22px; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 8px; }
.split li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 3px; background: var(--accent); }
.split .col.no li::before { background: var(--border-strong); }

/* numbered steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.step { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 20px 18px; }
.step .n { display: inline-flex; width: 28px; height: 28px; align-items: center; justify-content: center; border-radius: 8px; background: var(--navy); color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.step strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 3px; }
.step p { font-size: 13.5px; color: var(--ink-soft); }

/* towns */
.towns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 6px; }
.town {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 18px;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
}
.town.hq { background: var(--accent-light); border-color: var(--accent); color: var(--accent-dark); font-weight: 600; }

/* CTA band */
.cta-band { text-align: center; padding: 20px 24px 80px; max-width: 720px; margin: 0 auto; }
.cta-band h2 { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 3.6vw, 38px); color: var(--navy); letter-spacing: -0.02em; margin-bottom: 12px; }
.cta-band p { color: var(--ink-soft); font-size: 16px; margin-bottom: 26px; }
.cta-band p a { color: var(--accent-text); font-weight: 600; text-decoration: none; }
.btn-primary {
  background: var(--accent); color: var(--navy);
  padding: 15px 34px; border-radius: var(--radius);
  font-size: 15px; font-weight: 600; text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--accent-hover); color: var(--navy); transform: translateY(-1px); }
.btn-primary:active { background: var(--accent-press); }
.btn-ghost {
  color: var(--navy); padding: 15px 30px; border: 1.5px solid var(--border-strong); border-radius: var(--radius);
  font-size: 15px; font-weight: 500; text-decoration: none; display: inline-block; margin-left: 10px;
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); }
.header-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.35); }

@media (max-width: 860px) {
  .header-band { padding: 110px 20px 90px; }
  .grid-3, .proof-points, .svc-grid, .split, .steps { grid-template-columns: 1fr; }
  .btn-ghost { margin-left: 0; margin-top: 10px; }
}
