@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=JetBrains+Mono:wght@400;500&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

/* ── Tokens pulled from laconsultingcorp.com ── */
:root {
  /* Brand colours */
  --navy:        #0b1f3a;
  --navy-dark:   #060f1d;
  --navy-mid:    #132947;
  --blue:        #1a6fd4;
  --blue-light:  #2d8de8;
  --teal:        #00b8d9;
  --teal-light:  #4ecde8;
  --white:       #ffffff;
  --off-white:   #f4f7fb;
  --border:      #dde3ed;
  --text:        #0b1f3a;
  --text-mid:    #3d5170;
  --text-light:  #7189a8;

  /* Status colours */
  --pass:        #1a7a4a;
  --pass-bg:     #eaf7f0;
  --warn:        #b86d0a;
  --warn-bg:     #fff8ec;
  --fail:        #b92d2d;
  --fail-bg:     #fef0f0;

  /* Typography */
  --font:        'Inter', system-ui, sans-serif;
  --mono:        'JetBrains Mono', ui-monospace, monospace;

  /* Layout */
  --max:         1200px;
  --px:          clamp(1rem, 4vw, 2rem);
  --radius:      10px;
  --radius-sm:   6px;
  --shadow:      0 2px 12px rgba(11,31,58,.08);
  --shadow-md:   0 4px 24px rgba(11,31,58,.12);
}

/* ── Base ── */
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 1rem;
  line-height: 1.6;
}

/* ── Container ── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
}

/* ── Utility ── */
.mono        { font-family: var(--mono); }
.text-mid    { color: var(--text-mid); }
.text-light  { color: var(--text-light); }
.text-white  { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-off      { background: var(--off-white); }
.text-center { text-align: center; }

/* ── Site header (matches laconsultingcorp.com nav) ── */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--px);
  gap: 1.5rem;
}
.site-logo { display: flex; align-items: center; gap: .6rem; }
.site-logo img { height: 36px; width: auto; }
.site-logo .product-badge {
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  background: rgba(26,111,212,.08);
  border-radius: 4px;
  padding: .2rem .5rem;
}
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
}
.site-nav a:hover { color: var(--navy); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: .45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: .8rem !important;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--blue-light) !important; }
.nav-back {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .35rem;
}
.nav-back:hover { color: var(--navy); }

/* ── Hero section ── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,184,217,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--teal-light);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: .4; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.2); }
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
}
.trust-bar span { display: flex; align-items: center; gap: .4rem; }
.trust-bar span::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
}

/* ── Scan card (hero right column) ── */
.scan-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}
.scan-card .card-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.grade-row { display: flex; align-items: flex-end; gap: 1.25rem; margin-bottom: 1.5rem; }
.grade-letter {
  font-size: 5.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--warn);
}
.grade-meta { flex: 1; }
.grade-score { font-family: var(--mono); font-size: 1.75rem; color: var(--teal-light); }
.grade-sub { font-size: .75rem; color: rgba(255,255,255,.45); margin-top: .15rem; }
.mini-findings { display: flex; flex-direction: column; gap: .6rem; }
.mini-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem .65rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  font-size: .8rem;
}
.mini-row span:first-child { color: rgba(255,255,255,.7); }
.badge { font-family: var(--mono); font-size: .65rem; font-weight: 600; letter-spacing: .08em; padding: .2rem .5rem; border-radius: 4px; }
.badge.pass { background: var(--pass-bg); color: var(--pass); }
.badge.warn { background: var(--warn-bg); color: var(--warn); }
.badge.fail { background: var(--fail-bg); color: var(--fail); }
.view-demo { display: block; text-align: center; margin-top: 1.25rem; font-size: .75rem; color: var(--teal-light); font-weight: 500; }
.view-demo:hover { color: var(--white); }

/* ── Scan form (index page below hero) ── */
.scan-section {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 3rem 0;
}
.scan-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.scan-form-wrap h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.scan-form-wrap p { color: var(--text-mid); font-size: .95rem; margin-bottom: 1.5rem; }
.scan-form {
  display: flex;
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.scan-prefix {
  display: flex;
  align-items: center;
  padding: 0 .75rem 0 1rem;
  font-family: var(--mono);
  font-size: .85rem;
  color: var(--text-light);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  background: var(--off-white);
}
.scan-input {
  flex: 1;
  padding: .9rem 1rem;
  border: none;
  outline: none;
  font-size: 1rem;
  color: var(--navy);
  background: transparent;
}
.scan-input::placeholder { color: var(--text-light); }
.scan-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: .9rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.scan-btn:hover:not(:disabled) { background: var(--navy-mid); }
.scan-btn:disabled { opacity: .6; cursor: not-allowed; }
.scan-note { margin-top: .75rem; font-size: .75rem; color: var(--text-light); }

/* ── Content sections ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-label {
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--blue);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  line-height: 1.7;
}

/* ── Grid layouts ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.card p { font-size: .9rem; color: var(--text-mid); line-height: 1.6; }

/* ── Checks grid ── */
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: .75rem; }
.check-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  background: var(--white);
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}
.check-num {
  font-family: var(--mono);
  font-size: .65rem;
  color: var(--text-light);
  padding-top: .15rem;
  flex-shrink: 0;
}
.check-text h4 { font-size: .875rem; font-weight: 600; margin-bottom: .2rem; }
.check-text p { font-size: .8rem; color: var(--text-mid); line-height: 1.4; }

/* ── CTA strip ── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-strip h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: .75rem; }
.cta-strip p { color: rgba(255,255,255,.7); max-width: 560px; margin: 0 auto 2rem; font-size: 1rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
  text-decoration: none;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-light); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--off-white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-lg { padding: .9rem 2rem; font-size: 1rem; }
.btn-sm { padding: .5rem 1rem; font-size: .8rem; }

/* ── Results page ── */
.report-header {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.report-meta { font-size: .8rem; color: var(--text-light); font-family: var(--mono); margin-bottom: .5rem; }
.report-url { font-size: 1.5rem; font-weight: 700; word-break: break-all; margin-bottom: .5rem; }
.report-chain { font-size: .75rem; color: var(--text-light); font-family: var(--mono); }

.score-area { padding: 2.5rem 0; border-bottom: 1px solid var(--border); }
.score-grid { display: grid; grid-template-columns: 320px 1fr; gap: 3rem; align-items: start; }
.score-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.score-card-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.4); margin-bottom: 1.25rem; }
.big-grade { font-size: 7rem; font-weight: 800; line-height: 1; color: var(--warn); margin-bottom: .25rem; }
.big-score { font-family: var(--mono); font-size: 1.5rem; color: var(--teal-light); }
.score-risk { font-size: .8rem; color: rgba(255,255,255,.5); margin-top: .25rem; }
.score-breakdown {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: .5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
}
.breakdown-num { font-size: 2rem; font-weight: 800; }
.breakdown-num.p { color: var(--pass); }
.breakdown-num.w { color: var(--warn); }
.breakdown-num.f { color: #e56b6b; }
.breakdown-lbl { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.4); margin-top: .15rem; }

.top-issues-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--blue); margin-bottom: .75rem; }
.top-issues-title { font-size: 1.75rem; font-weight: 800; letter-spacing: -.02em; margin-bottom: 1.25rem; }
.issue-card {
  display: flex;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-left: 4px solid var(--fail);
  background: var(--fail-bg);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: .75rem;
}
.issue-num { font-size: 1.75rem; font-weight: 800; color: var(--fail); line-height: 1; flex-shrink: 0; }
.issue-text { font-size: .9rem; color: var(--text); line-height: 1.6; padding-top: .2rem; }

/* ── Findings ── */
.findings-section { padding: 2.5rem 0 4rem; }
.findings-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 1.5rem; }
.findings-header h2 { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.findings-header small { font-size: .8rem; color: var(--text-light); }
.finding-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: .75rem;
  transition: box-shadow .2s;
}
.finding-card:hover { box-shadow: var(--shadow); }
.finding-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: none;
  cursor: pointer;
  text-align: left;
}
.finding-toggle:hover { background: var(--off-white); }
.finding-idx { font-family: var(--mono); font-size: .7rem; color: var(--text-light); flex-shrink: 0; width: 1.5rem; }
.finding-main { flex: 1; }
.finding-title { font-size: .975rem; font-weight: 700; color: var(--navy); }
.finding-observed { font-family: var(--mono); font-size: .72rem; color: var(--text-light); margin-top: .2rem; }
.finding-meta { display: flex; flex-direction: column; align-items: flex-end; gap: .35rem; flex-shrink: 0; }
.severity-tag { font-size: .65rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-light); }
.finding-chevron { font-size: .8rem; color: var(--text-light); margin-left: .5rem; flex-shrink: 0; transition: transform .25s; }
.finding-chevron.open { transform: rotate(180deg); }

.finding-body {
  display: none;
  border-top: 1px solid var(--border);
  padding: 1.5rem 1.25rem;
  background: var(--off-white);
}
.finding-body.visible { display: block; }
.finding-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-bottom: 1.5rem; }
.finding-section-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--blue); margin-bottom: .5rem; }
.finding-body p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; }
.code-block {
  background: var(--navy);
  color: var(--teal-light);
  font-family: var(--mono);
  font-size: .8rem;
  padding: .9rem 1.1rem;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  margin: .75rem 0 1.25rem;
}
.platform-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: .75rem; }
.platform-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}
.platform-name { font-size: .875rem; font-weight: 700; margin-bottom: .35rem; }
.platform-instruction { font-size: .8rem; color: var(--text-mid); line-height: 1.55; }

/* ── Email capture ── */
.email-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 3.5rem 0;
  text-align: center;
}
.email-section h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: .5rem; }
.email-section p { color: rgba(255,255,255,.7); font-size: .95rem; margin-bottom: 1.5rem; }
.email-form { display: flex; max-width: 460px; margin: 0 auto; gap: .5rem; }
.email-form input {
  flex: 1;
  padding: .75rem 1rem;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: .9rem;
  outline: none;
  transition: border .2s;
}
.email-form input::placeholder { color: rgba(255,255,255,.4); }
.email-form input:focus { border-color: var(--teal); }
.email-form button {
  background: var(--teal);
  color: var(--navy-dark);
  border: none;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .875rem;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.email-form button:hover { background: var(--teal-light); }
.email-note { font-size: .7rem; color: rgba(255,255,255,.35); margin-top: .75rem; }
.email-success { font-size: .95rem; color: var(--teal-light); margin-top: 1rem; }

/* ── Hardening review page ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 4rem 0;
}
.page-hero-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: center; }
.page-hero-label { font-size: .65rem; font-weight: 700; text-transform: uppercase; letter-spacing: .2em; color: var(--teal-light); margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 1rem; }
.page-hero h1 em { font-style: normal; color: var(--teal); }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.05rem; line-height: 1.7; }
.promise-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.promise-card h3 { font-size: 1.5rem; font-weight: 800; line-height: 1.3; margin-bottom: .75rem; }
.promise-card h3 em { font-style: normal; color: var(--teal); }
.promise-card p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; }

.includes-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.include-item {
  display: flex;
  gap: .85rem;
  padding: 1.1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.include-arrow { color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: .1rem; }
.include-item h4 { font-size: .9rem; font-weight: 700; margin-bottom: .3rem; }
.include-item p { font-size: .8rem; color: var(--text-mid); line-height: 1.5; }

.not-included { background: var(--off-white); }
.not-list { list-style: none; max-width: 600px; }
.not-list li {
  display: flex;
  gap: .75rem;
  padding: .75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .925rem;
  color: var(--text-mid);
}
.not-list li:last-child { border-bottom: none; }
.not-x { color: var(--fail); font-weight: 700; flex-shrink: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.step { text-align: center; }
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--navy-dark);
  font-weight: 800;
  font-size: .875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step h3 { font-size: .975rem; font-weight: 700; margin-bottom: .4rem; }
.step p { font-size: .85rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ── Form ── */
.form-section { background: var(--off-white); padding: 4rem 0; }
.form-wrap { max-width: 640px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-mid);
}
.field label .req { color: var(--fail); }
.field input, .field textarea {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-size: .95rem;
  color: var(--navy);
  outline: none;
  transition: border .2s;
}
.field input:focus, .field textarea:focus { border-color: var(--blue); }
.field textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
  margin-top: .5rem;
}
.submit-btn:hover { background: var(--navy-mid); }
.form-note { text-align: center; font-size: .75rem; color: var(--text-light); margin-top: .75rem; }
.form-success {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-success h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: .75rem; }
.form-success p { color: var(--text-mid); font-size: .95rem; line-height: 1.6; }

/* ── Footer (matches laconsultingcorp.com) ── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.6); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-brand img { height: 32px; margin-bottom: .75rem; }
.footer-tagline { font-size: .85rem; line-height: 1.6; color: rgba(255,255,255,.45); max-width: 280px; }
.footer-col h4 { font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(255,255,255,.35); margin-bottom: 1rem; font-weight: 700; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-col a { font-size: .875rem; color: rgba(255,255,255,.55); transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom em { font-style: italic; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero-grid, .score-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .scan-card { display: none; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .finding-cols { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .site-nav .hide-mobile { display: none; }
}
@media (max-width: 600px) {
  .scan-form { flex-direction: column; }
  .scan-prefix { border-right: none; border-bottom: 1px solid var(--border); }
  .scan-btn { justify-content: center; }
  .grid-2, .grid-3, .grid-5 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}
