/* W Scale Automation  global static site */
:root {
  --navy: #0a2540;
  --navy-light: #123456;
  --accent: #1e88e5;
  --accent-hover: #1565c0;
  --text: #1a1a1a;
  --text-muted: #555;
  --bg: #ffffff;
  --bg-alt: #f4f7fb;
  --border: #d0d7e2;
  --quick-answer-bg: #e8f0fe;
  --max-width: 1120px;
  --header-h: 64px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.topbar {
  background: linear-gradient(90deg, rgba(30,136,229,0) 0%, rgba(30,136,229,.16) 50%, rgba(30,136,229,0) 100%);
  border-bottom: 1px solid rgba(126,184,255,.14);
}
.slogan {
  margin: 0;
  text-align: center;
  padding: .4rem 0;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #bcd9ff;
}
.slogan .dot {
  color: var(--accent);
  margin: 0 .6em;
  font-weight: 700;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  white-space: nowrap;
}
.logo:hover { text-decoration: none; opacity: .9; }
.logo-mark {
  height: 40px;
  width: 40px;
  border-radius: 9px;
  display: block;
  box-shadow: 0 0 0 1px rgba(126,184,255,.18);
}
.logo-text span { color: #7eb8ff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: .25rem;
}

.main-nav { display: flex; align-items: center; gap: .25rem; }

.main-nav > ul {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: .15rem;
}

.main-nav a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: .9rem;
  padding: .5rem .65rem;
  border-radius: 4px;
}
.main-nav a:hover { background: rgba(255,255,255,.1); text-decoration: none; }

.nav-item { position: relative; }

.nav-item > .nav-link {
  display: flex;
  align-items: center;
  gap: .25rem;
  cursor: pointer;
  background: none;
  border: none;
  color: rgba(255,255,255,.92);
  font: inherit;
  font-size: .9rem;
  padding: .5rem .65rem;
  border-radius: 4px;
}
.nav-item > .nav-link:hover { background: rgba(255,255,255,.1); }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  padding: .5rem 0;
  list-style: none;
  margin: 0;
}
.nav-item.open .dropdown { display: block; }

.dropdown a {
  display: block;
  color: var(--text);
  padding: .45rem 1rem;
  font-size: .875rem;
}
.dropdown a:hover { background: var(--bg-alt); text-decoration: none; }

.btn-nav {
  background: var(--accent) !important;
  color: #fff !important;
  font-weight: 600;
  margin-left: .5rem;
  border-radius: 6px !important;
}
.btn-nav:hover { background: var(--accent-hover) !important; }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 3.5rem 0 4rem;
  text-align: center;
}
.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
  max-width: 820px;
  margin-inline: auto;
}
.hero .lead {
  font-size: 1.125rem;
  opacity: .92;
  max-width: 680px;
  margin: 0 auto 1.75rem;
}
.hero-meta {
  font-size: .875rem;
  opacity: .75;
  margin-bottom: 1.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: .75rem 1.35rem;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 6px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn-secondary:hover { background: rgba(255,255,255,.1); color: #fff; }
.btn-outline { background: #fff; color: var(--navy); border-color: var(--border); }
.btn-outline:hover { background: var(--bg-alt); color: var(--navy); }

/* Dual silo panels */
.silo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding: 3rem 0;
}
.silo-panel {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  background: var(--bg);
}
.silo-panel.ecommerce { border-top: 4px solid var(--accent); }
.silo-panel.automation { border-top: 4px solid #0d9488; }
.silo-panel h2 { margin-top: 0; font-size: 1.35rem; color: var(--navy); }
.silo-panel ul { padding-left: 1.2rem; margin: 0 0 1.25rem; }
.silo-panel li { margin-bottom: .35rem; }

/* Sections */
.section { padding: 2.5rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { color: var(--navy); margin-top: 0; }

.page-header {
  background: var(--bg-alt);
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
}
.page-header h1 {
  margin: 0 0 .75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
}

.quick-answer {
  background: var(--quick-answer-bg);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  margin: 0 0 1.75rem;
  border-radius: 0 6px 6px 0;
  font-size: .975rem;
}

.content-block { padding: 2rem 0 3rem; }
.content-block h2 {
  font-size: 1.2rem;
  color: var(--navy-light);
  margin: 2rem 0 .75rem;
}
.content-block h2:first-of-type { margin-top: 0; }
.content-block p { margin: 0 0 1rem; }

.faq { margin-top: 2rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: .75rem;
  background: #fff;
}
.faq-item h3 { margin: 0 0 .5rem; font-size: 1rem; color: var(--navy); }
.faq-item p { margin: 0; font-size: .925rem; color: var(--text-muted); }

.cta-band {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 2.5rem 1rem;
  margin-top: 2rem;
}
.cta-band h2 { color: #fff; margin: 0 0 .75rem; }
.cta-band p { opacity: .9; margin: 0 0 1.25rem; }

.related-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.related-links h2 { font-size: 1rem; margin-bottom: .75rem; }
.related-links ul { padding-left: 1.2rem; }

/* Trust / cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.25rem;
  background: #fff;
}
.card h3 { margin: 0 0 .5rem; font-size: 1rem; color: var(--navy); }
.card p { margin: 0; font-size: .9rem; color: var(--text-muted); }

/* Hub pages: full-width industry / solution links */
.hub-list-section { padding: 2rem 0 2.5rem; }
.hub-list-lead {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  color: var(--text-muted);
}
.hub-link-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.hub-link-card {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  width: 100%;
  padding: 1.15rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.hub-link-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(10, 37, 64, .08);
  transform: translateY(-1px);
  text-decoration: none;
}
.hub-link-card--automation:hover { border-color: #0d9488; }
.hub-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--quick-answer-bg);
  color: var(--accent);
  flex: none;
}
.hub-link-icon .icon { width: 24px; height: 24px; }
.hub-link-card--automation .hub-link-icon {
  background: #d7f5f0;
  color: #0d9488;
}
.hub-link-body { flex: 1; min-width: 0; }
.hub-link-title {
  display: block;
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: .25rem;
}
.hub-link-teaser {
  display: block;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.hub-link-cta {
  flex: none;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
}
.hub-link-card--automation .hub-link-cta { color: #0d9488; }
@media (max-width: 720px) {
  .hub-link-card { flex-wrap: wrap; align-items: flex-start; }
  .hub-link-cta {
    width: 100%;
    padding-left: calc(48px + 1.15rem);
  }
}

/* Form */
.form-page { padding: 2rem 0 3rem; }
.form-card {
  max-width: 560px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  background: #fff;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .875rem;
  margin-bottom: .35rem;
}
.budget-row {
  display: flex;
  align-items: stretch;
  gap: .5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .6rem .75rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
  font-size: .95rem;
}
.budget-row [data-budget-select] {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
}
.budget-row .budget-currency {
  flex: 0 0 5.25rem;
  width: 5.25rem;
  min-width: 5.25rem;
  max-width: 5.25rem;
  padding-left: .5rem;
  padding-right: .5rem;
  font-size: .875rem;
  font-weight: 600;
}
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group-message textarea {
  min-height: 11rem;
  line-height: 1.5;
}
.form-group .char-count {
  font-size: .8rem;
  color: var(--text-muted);
  margin: .35rem 0 0;
  text-align: right;
}
.form-group .char-count.is-low { color: #c62828; }
.form-group .hint { font-size: .8rem; color: var(--text-muted); margin-top: .25rem; }
.form-error {
  color: #b91c1c;
  font-size: .875rem;
  margin-top: .5rem;
  display: none;
}
.form-error.visible { display: block; }
.form-success { text-align: center; padding: 2rem; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  padding: 2.5rem 0 1.5rem;
  font-size: .875rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.footer-mark {
  height: 52px;
  width: 52px;
  border-radius: 11px;
  display: block;
  margin-bottom: .7rem;
  box-shadow: 0 0 0 1px rgba(126,184,255,.18);
}
.site-footer h3 {
  color: #fff;
  font-size: .9rem;
  margin: 0 0 .75rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .35rem; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1.75rem;
  margin-top: .5rem;
}
.footer-bottom-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
}
.footer-copy {
  margin: 0 0 .35rem;
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.95);
  letter-spacing: .01em;
}
.footer-entity {
  margin: 0 0 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.65);
}
.footer-address {
  margin: 0 auto 1rem;
  font-style: normal;
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255,255,255,.55);
}
.footer-reg {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 2rem;
  margin: 0 auto 1rem;
  padding: 0;
}
.footer-reg-item {
  margin: 0;
  text-align: center;
}
.footer-reg dt {
  margin: 0 0 .2rem;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.footer-reg dd {
  margin: 0;
  font-size: .82rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  font-variant-numeric: tabular-nums;
}
.footer-markets {
  margin: 0 0 1rem;
  font-size: .75rem;
  line-height: 1.5;
  color: rgba(255,255,255,.45);
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .35rem .5rem;
  margin: 0;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-legal-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.7);
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-link-sep {
  color: rgba(255,255,255,.35);
  font-size: .75rem;
  user-select: none;
}
.brand-accent { color: #7eb8ff; }
.brand-email:hover .brand-accent { color: #a6cdff; }

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.global-badge {
  display: inline-block;
  background: rgba(255,255,255,.12);
  padding: .35rem .75rem;
  border-radius: 999px;
  font-size: .8rem;
  margin-bottom: 1rem;
}

@media (min-width: 1025px) {
  .nav-item.has-dropdown:hover .dropdown { display: block; }
}

@media (max-width: 1024px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1rem;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .main-nav.open { display: flex; }
  .main-nav > ul { flex-direction: column; align-items: stretch; width: 100%; }
  .dropdown {
    position: static;
    box-shadow: none;
    background: rgba(0,0,0,.2);
    margin-top: .25rem;
  }
  .dropdown a { color: rgba(255,255,255,.9); }
  .silo-grid { grid-template-columns: 1fr; }
  .btn-nav { margin-left: 0 !important; margin-top: .5rem; text-align: center; }
}

/* ============================================================
   Icons & graphics
   ============================================================ */
.icon { width: 24px; height: 24px; display: inline-block; vertical-align: middle; flex: none; }
.icon svg { width: 100%; height: 100%; display: block; }

.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--quick-answer-bg);
  color: var(--accent);
  margin-bottom: 1rem;
}
.icon-circle .icon { width: 26px; height: 26px; }
.silo-panel.automation .icon-circle { background: #d7f5f0; color: #0d9488; }

/* Hero re-style with graphic */
.hero {
  position: relative;
  overflow: hidden;
  text-align: left;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 85% 20%, rgba(30,136,229,.35), transparent 42%),
    radial-gradient(circle at 15% 90%, rgba(13,148,136,.25), transparent 40%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 2.5rem;
  align-items: center;
}
.hero h1 { margin-inline: 0; }
.hero .lead { margin-left: 0; margin-right: 0; }
.hero-actions { justify-content: flex-start; }
.hero-trust {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: .85rem;
  opacity: .85;
}
.hero-trust span { display: inline-flex; align-items: center; gap: .4rem; }
.hero-trust .icon { width: 18px; height: 18px; color: #7eb8ff; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg { width: 100%; max-width: 420px; height: auto; filter: drop-shadow(0 12px 30px rgba(0,0,0,.35)); }

/* Stack / trust strip */
.stack-strip {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.stack-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}
.stack-strip .label {
  width: 100%;
  text-align: center;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .4rem .85rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
}
.pill .icon { width: 16px; height: 16px; color: var(--accent); }
.stack-note {
  width: 100%;
  text-align: center;
  margin: .9rem 0 0;
  font-size: .82rem;
  color: var(--text-muted);
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.tools-intro {
  max-width: 640px;
  margin: .5rem auto 0;
  color: var(--text-muted);
  font-size: .95rem;
}

/* AI / LLM callout */
.ai-callout {
  margin: 2.5rem 0 0;
  padding: 1.75rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a2540 0%, #123a6b 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ai-callout::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,136,229,.45), transparent 70%);
  pointer-events: none;
}
.ai-callout-head {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: .75rem;
}
.ai-callout-head h2 { margin: 0; color: #fff; font-size: 1.3rem; }
.ai-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(126,184,255,.18);
  color: #7eb8ff;
  flex: none;
}
.ai-badge .icon { width: 26px; height: 26px; }
.ai-callout > p { opacity: .9; margin: 0 0 1.25rem; max-width: 760px; position: relative; z-index: 1; }
.ai-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: .6rem 1.5rem;
  position: relative;
  z-index: 1;
}
.ai-list li { display: flex; align-items: flex-start; gap: .55rem; font-size: .95rem; }
.ai-list li .icon { width: 18px; height: 18px; color: #5eead4; margin-top: .2rem; flex: none; }

/* AI nav highlight + badge */
.nav-link.nav-ai { color: #7eb8ff; font-weight: 600; }
.nav-badge {
  display: inline-block;
  background: #1e88e5;
  color: #fff;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: .1rem .35rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: .15rem;
}

/* AI page: industry grid */
.ai-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.ai-industry {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  background: #fff;
  scroll-margin-top: 90px;
}
.ai-industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--quick-answer-bg);
  color: var(--accent);
  flex: none;
}
.ai-industry-icon .icon { width: 24px; height: 24px; }
.ai-industry h3 { margin: 0 0 .35rem; color: var(--navy); font-size: 1.05rem; }
.ai-industry p { margin: 0 0 .5rem; font-size: .92rem; color: var(--text-muted); }

/* Card icons */
.card .icon-circle { width: 44px; height: 44px; border-radius: 12px; margin-bottom: .75rem; }
.card .icon-circle .icon { width: 22px; height: 22px; }
.card.feature {
  transition: transform .15s, box-shadow .15s;
}
.card.feature:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(10,37,64,.12); }
.card.feature h3 a { color: var(--navy); }

/* Silo panel list checkmarks */
.silo-panel ul { list-style: none; padding-left: 0; }
.silo-panel li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  padding: .15rem 0;
}
.silo-panel li .icon {
  width: 18px; height: 18px; color: var(--accent);
  margin-top: .15rem;
}
.silo-panel.automation li .icon { color: #0d9488; }

/* Header icon badge on spoke pages */
.header-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  margin-bottom: 1rem;
}
.header-badge .icon { width: 28px; height: 28px; }

.page-header .global-badge {
  background: var(--quick-answer-bg);
  color: var(--accent);
  font-weight: 600;
}

/* Industry spoke pages  expanded content */
.industry-hero .page-subhead {
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 52rem;
}
.hero-proof {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: .5rem;
  max-width: 52rem;
}
.hero-proof li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .95rem;
  color: var(--navy-light);
}
.hero-proof .icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  margin-top: .15rem;
  flex-shrink: 0;
}
.hero-cta { margin-bottom: 1.25rem; }
.industry-hero .quick-answer { margin-bottom: 0; }

.industry-content h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 1.5rem 0 .5rem;
}
.workflow-grid,
.investment-grid {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}
.workflow-card,
.investment-tier {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem 1.35rem;
  background: #fff;
}
.workflow-card h3,
.investment-tier h3 {
  margin-top: 0;
  font-size: 1.05rem;
}
.workflow-card p,
.investment-tier p {
  margin: 0 0 .75rem;
  font-size: .925rem;
  color: var(--text-muted);
}
.workflow-card p:last-child,
.investment-tier p:last-child { margin-bottom: 0; }
.workflow-impact {
  background: var(--quick-answer-bg);
  border-left: 3px solid var(--accent);
  padding: .65rem .85rem !important;
  border-radius: 0 6px 6px 0;
  color: var(--navy-light) !important;
}
.quote-prompt {
  margin: 2.5rem 0;
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
  text-align: center;
}
.quote-prompt h2 { margin-top: 0; }
.quote-prompt p {
  max-width: 40rem;
  margin: 0 auto 1.25rem;
  color: var(--text-muted);
  font-size: .95rem;
}
.engagement-steps { margin: 1.25rem 0 2rem; }
.case-study {
  margin: 2rem 0;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-alt);
}
.case-study h2 { margin-top: 0; }
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 0;
}
.case-study-grid div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
}
.case-study-grid dt {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--accent);
  margin: 0 0 .35rem;
}
.case-study-grid dd {
  margin: 0;
  font-size: .925rem;
  color: var(--text-muted);
}
.why-wsa {
  margin: 2rem 0;
  padding: 1.5rem;
  border-radius: 10px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.why-wsa h2 { margin-top: 0; }
.why-wsa p:last-child { margin-bottom: 0; }

/* Process / steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 1.5rem 1.25rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -16px;
  left: 1.25rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { margin: .25rem 0 .35rem; color: var(--navy); font-size: 1rem; }
.step p { margin: 0; font-size: .9rem; color: var(--text-muted); }

/* ============================================================
   Floating quote bubble
   ============================================================ */
.fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: .85rem 1.25rem;
  font: inherit;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(30,136,229,.45);
  transition: transform .15s, background .15s;
  animation: fab-in .4s ease both;
}
.fab:hover { background: var(--accent-hover); transform: translateY(-2px); }
.fab .icon { width: 20px; height: 20px; }
@keyframes fab-in {
  from { opacity: 0; transform: translateY(20px) scale(.9); }
  to { opacity: 1; transform: none; }
}

.fab-panel {
  position: fixed;
  right: 20px;
  bottom: 84px;
  z-index: 201;
  width: min(380px, calc(100vw - 40px));
  max-height: min(80vh, 640px);
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(10,37,64,.35);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(.98);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.fab-panel.open { opacity: 1; visibility: visible; transform: none; }

.fab-panel-header {
  background: var(--navy);
  color: #fff;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fab-panel-header strong { font-size: 1rem; display: block; }
.fab-panel-header small { opacity: .8; font-size: .8rem; }
.fab-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 .25rem;
}
.fab-panel-body { padding: 1.25rem; overflow-y: auto; }
.fab-panel-body .form-group { margin-bottom: .85rem; }
.fab-panel-body .form-group-message textarea { min-height: 7rem; }
.fab-panel-body label { font-size: .8rem; }

@media (max-width: 480px) {
  .fab span.fab-label { display: none; }
  .fab { padding: .85rem; }
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { text-align: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero .lead { margin-inline: auto; }
}

/* Legal pages */
.legal-content h2 { margin-top: 1.25rem; }
.legal-updated { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .5rem; }
.page-header .legal-updated { color: var(--text-muted); }

/* Form consent */
.form-consent { margin-bottom: .65rem; }
.form-consent:last-of-type { margin-bottom: 1rem; }
.checkbox-label {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .85rem;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
  font-weight: 400;
}
.checkbox-label span { flex: 1; min-width: 0; }
.form-consent .checkbox-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-width: 1rem;
  margin-top: .15rem;
  padding: 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: rgba(10, 37, 64, .97);
  color: #fff;
  border-top: 1px solid rgba(126,184,255,.25);
  box-shadow: 0 -8px 30px rgba(0,0,0,.25);
}
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.25rem 1.25rem;
}
.cookie-banner p { margin: 0 0 .85rem; font-size: .88rem; line-height: 1.5; color: rgba(255,255,255,.9); }
.cookie-banner a { color: #7eb8ff; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.btn-sm { padding: .45rem .85rem; font-size: .82rem; }
.btn-link {
  background: none;
  border: none;
  color: #7eb8ff;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  padding: .45rem .5rem;
}
.cookie-preferences {
  margin-top: .85rem;
  padding-top: .85rem;
  border-top: 1px solid rgba(255,255,255,.12);
}
.cookie-preferences label {
  display: block;
  margin-bottom: .45rem;
  font-size: .85rem;
}
.cookie-pref-title { font-weight: 600; margin-bottom: .5rem; }

@media (max-width: 600px) {
  .cookie-actions .btn { width: 100%; justify-content: center; }
}
