:root {
  color-scheme: light;
  --saffron-600: #F15A18;
  --bharat-green: #087B34;
  --trust-navy: #0A3168;
  --ribbon-blue: #287FC0;
  --navy-950: #06172c;
  --navy-900: var(--trust-navy);
  --navy-800: #0a2546;
  --blue-700: var(--ribbon-blue);
  --blue-600: #2563eb;
  --cyan-500: #06b6d4;
  --teal-500: var(--bharat-green);
  --violet-600: #7c3aed;
  --gold-500: #d4af37;
  --slate-900: #0f172a;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.92);
  --border: rgba(148, 163, 184, 0.28);
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 14px 38px rgba(15, 23, 42, 0.08);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font);
  color: var(--slate-900);
  background:
    linear-gradient(90deg, rgba(21, 91, 213, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 91, 213, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #eef6ff 42%, #f8fafc 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 99;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  padding: 10px 16px;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.76);
  background: rgba(247, 251, 255, 0.88);
  backdrop-filter: blur(18px);
}

.site-header > *,
.hero-copy {
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img {
  width: min(220px, 38vw);
  height: auto;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

.brand-subtitle {
  padding-top: 3px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand strong {
  font-size: 1.03rem;
}

.brand small {
  margin-top: 4px;
  color: var(--slate-600);
  font-size: 0.82rem;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.text-link {
  color: var(--slate-700);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 700;
}

.nav-links a:hover,
.text-link:hover {
  color: var(--blue-700);
}

.button {
  display: inline-flex;
  max-width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 850;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--cyan-500));
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.22);
}

.button-secondary {
  color: var(--navy-900);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: clamp(640px, 74svh, 780px);
  padding: clamp(34px, 4.8vw, 60px) clamp(20px, 5vw, 72px) 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #087c8d;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-500), var(--gold-500));
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 6.15vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--navy-950);
}

.hero-copy > p {
  max-width: 710px;
  color: var(--slate-700);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  line-height: 1.66;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  gap: 14px;
  margin: 0;
}

.hero-metrics div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--navy-950);
  font-size: 1.8rem;
  font-weight: 950;
}

.hero-metrics dd {
  margin: 0;
  color: var(--slate-600);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  align-self: start;
  min-width: 0;
  padding-top: clamp(12px, 2.8vw, 38px);
}

.hero-command-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(40, 127, 192, 0.2);
  border-radius: 28px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.88)),
    linear-gradient(90deg, rgba(241, 90, 24, 0.08), rgba(8, 123, 52, 0.08));
  box-shadow: var(--shadow-soft);
}

.hero-command-strip::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--saffron-600), var(--bharat-green), var(--ribbon-blue));
}

.hero-command-strip strong {
  display: block;
  max-width: 560px;
  color: var(--navy-950);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.22;
}

.command-kicker {
  display: block;
  margin-bottom: 8px;
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-command-strip ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-command-strip li {
  min-width: 0;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.76);
}

.hero-command-strip li span,
.hero-command-strip li small {
  display: block;
  min-width: 0;
}

.hero-command-strip li span {
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 950;
}

.hero-command-strip li small {
  margin-top: 5px;
  color: var(--slate-600);
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(7, 27, 51, 0.2);
}

.window-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--slate-200);
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  color: #dbeafe;
}

.window-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #93c5fd;
}

.window-top span:nth-child(2) {
  background: #67e8f9;
}

.window-top span:nth-child(3) {
  background: #d4af37;
}

.window-top strong {
  margin-left: 10px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-window img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.floating-card {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(14px);
}

.floating-card-one {
  top: 48%;
  left: -28px;
}

.floating-card-two {
  right: -18px;
  bottom: 13%;
}

.floating-card strong {
  padding-left: 22px;
}

.floating-card small {
  color: var(--slate-600);
  font-weight: 650;
}

.signal {
  position: absolute;
  top: 20px;
  left: 18px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.signal-green {
  background: var(--teal-500);
}

.signal-gold {
  background: var(--gold-500);
}

.logos-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding: 18px clamp(20px, 5vw, 72px) 36px;
}

.logos-band span {
  border: 1px solid rgba(125, 211, 252, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--navy-800);
  font-size: 0.9rem;
  font-weight: 850;
}

.section {
  padding: clamp(66px, 8vw, 104px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 880px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(2.1rem, 4.2vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading p,
.trust-copy p,
.impact-section p,
.cta-section p {
  max-width: 760px;
  color: var(--slate-700);
  font-size: 1.05rem;
  line-height: 1.75;
}

.school-erp-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(37, 99, 235, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.045));
  background-size: 48px 48px, 48px 48px, auto;
}

.seo-selection-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-top: 42px;
  border-left: 4px solid var(--teal);
  padding: 12px 0 12px 28px;
}

.seo-selection-guide h3 {
  margin: 10px 0 12px;
  color: var(--navy-950);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.12;
}

.seo-selection-guide p {
  margin: 0;
  color: var(--slate-700);
  line-height: 1.7;
}

.seo-selection-guide .check-list {
  margin-top: 0;
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.resource-page {
  background:
    linear-gradient(90deg, rgba(21, 91, 213, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(21, 91, 213, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 48%, #f8fafc 100%);
  background-size: 48px 48px, 48px 48px, auto;
}

.resource-hero,
.resource-body,
.resource-next {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.resource-hero {
  padding: clamp(52px, 8vw, 104px) 0 48px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--slate-600);
  font-size: 0.9rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--blue-700);
  text-decoration: none;
}

.resource-hero h1 {
  max-width: 980px;
  margin: 14px 0 22px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.resource-deck {
  max-width: 820px;
  margin: 0;
  color: var(--slate-700);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 28px 0 0;
  color: var(--slate-600);
  font-size: 0.92rem;
  font-weight: 700;
}

.resource-visual {
  position: relative;
  overflow: hidden;
  margin-top: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.resource-visual img {
  width: 100%;
  height: auto;
}

.resource-visual figcaption {
  padding: 14px 18px;
  border-top: 1px solid var(--border);
  color: var(--slate-600);
  font-size: 0.88rem;
}

.resource-body {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: start;
  padding: 56px 0 72px;
}

.resource-toc {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  padding-left: 18px;
  border-left: 3px solid var(--cyan-500);
}

.resource-toc strong {
  color: var(--navy-950);
}

.resource-toc a {
  color: var(--slate-600);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.resource-toc a:hover {
  color: var(--blue-700);
}

.resource-content {
  min-width: 0;
}

.resource-content > section {
  padding: 0 0 56px;
  scroll-margin-top: 120px;
}

.resource-content h2 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.resource-content h3 {
  margin: 28px 0 10px;
  color: var(--navy-950);
  font-size: 1.25rem;
}

.resource-content p,
.resource-content li {
  color: var(--slate-700);
  font-size: 1.02rem;
  line-height: 1.75;
}

.resource-content ul,
.resource-content ol {
  padding-left: 22px;
}

.resource-content li + li {
  margin-top: 10px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.decision-grid article {
  border-top: 4px solid var(--bharat-green);
  border-radius: 6px;
}

.resource-callout {
  margin: 28px 0;
  border-left: 4px solid var(--gold-500);
  padding: 18px 22px;
  background: rgba(255, 251, 235, 0.72);
}

.resource-callout strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy-950);
}

.table-scroll {
  overflow-x: auto;
  margin-top: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.resource-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.resource-table th,
.resource-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.resource-table th {
  color: var(--navy-950);
  background: var(--slate-50);
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.resource-table tr:last-child td {
  border-bottom: 0;
}

.resource-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 72px;
  border-radius: 8px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--trust-navy));
  box-shadow: var(--shadow);
}

.resource-next h2 {
  margin: 0 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.resource-next p {
  max-width: 720px;
  margin: 0;
  color: #dbeafe;
  line-height: 1.65;
}

.resource-next .button-secondary {
  background: var(--white);
}

.module-grid,
.pricing-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.module-grid article,
.pricing-card,
.proof-grid article,
.impact-cards article {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.module-grid article:hover,
.pricing-card:hover,
.proof-grid article:hover,
.impact-cards article:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: var(--shadow);
}

.module-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-900), var(--blue-600));
  font-weight: 950;
}

h3 {
  margin-bottom: 12px;
  color: var(--navy-950);
  font-size: 1.22rem;
  line-height: 1.25;
}

article p,
.pricing-card span,
.pricing-card p {
  color: var(--slate-600);
  line-height: 1.65;
}

.trust-section,
.impact-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(239, 246, 255, 0.86)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.08));
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--slate-700);
  line-height: 1.6;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--teal-500), var(--cyan-500));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.85);
}

.trust-panel {
  display: grid;
  gap: 14px;
}

.trust-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.75);
}

.trust-row span {
  color: var(--slate-600);
  font-weight: 700;
}

.trust-row strong {
  color: var(--navy-900);
  text-align: right;
}

.health-check-section {
  position: relative;
  padding-top: clamp(72px, 8vw, 112px);
}

.health-check-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
}

.health-check-form,
.health-check-panel {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 246, 255, 0.88)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(16, 185, 129, 0.06));
  box-shadow: var(--shadow);
}

.health-check-form {
  display: grid;
  gap: 22px;
  padding: clamp(22px, 3vw, 34px);
}

.health-check-panel {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 3vw, 34px);
}

.health-check-panel h3 {
  margin-top: 14px;
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  line-height: 1.06;
}

.health-check-status {
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 20px;
  padding: 14px 16px;
  color: var(--navy-900);
  background: rgba(239, 246, 255, 0.86);
  font-weight: 780;
  line-height: 1.5;
}

.health-check-status[data-tone="success"] {
  border-color: rgba(16, 185, 129, 0.26);
  color: #047857;
  background: rgba(236, 253, 245, 0.92);
}

.health-check-status[data-tone="warning"] {
  border-color: rgba(212, 175, 55, 0.38);
  color: #92400e;
  background: rgba(255, 251, 235, 0.92);
}

.health-check-status[data-tone="danger"] {
  border-color: rgba(239, 68, 68, 0.28);
  color: #991b1b;
  background: rgba(254, 242, 242, 0.92);
}

.health-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.health-form-grid-compact {
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
}

.health-check-form label,
.health-check-question {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.health-check-form label span,
.health-check-dimension legend {
  color: var(--slate-700);
  font-size: 0.86rem;
  font-weight: 900;
}

.health-check-form input,
.health-check-form select,
.health-check-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(148, 163, 184, 0.36);
  border-radius: 16px;
  padding: 12px 14px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-weight: 650;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.health-check-form textarea {
  min-height: 118px;
  resize: vertical;
  line-height: 1.55;
}

.health-check-form input:focus,
.health-check-form select:focus,
.health-check-form textarea:focus {
  border-color: rgba(37, 99, 235, 0.5);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.health-check-questions {
  display: grid;
  gap: 16px;
}

.health-check-dimension {
  display: grid;
  gap: 14px;
  margin: 0;
  border: 1px solid rgba(148, 163, 184, 0.26);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.58);
}

.health-check-dimension legend {
  padding: 0 8px;
  color: var(--navy-900);
  font-size: 0.95rem;
}

.health-check-question {
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.4fr);
  align-items: center;
}

.health-check-question span {
  color: var(--slate-700);
  font-weight: 700;
  line-height: 1.5;
}

.health-check-notes {
  grid-column: span 1;
}

.consent-row {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 12px !important;
  color: var(--slate-700);
  font-weight: 750;
  line-height: 1.5;
}

.consent-row input {
  width: 20px;
  min-width: 20px;
  height: 20px;
  min-height: 20px;
  margin-top: 2px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
}

.pricing-card strong {
  margin-top: auto;
  color: var(--navy-900);
  font-size: 1.05rem;
}

.pricing-card.featured {
  border-color: rgba(37, 99, 235, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.94));
}

.plan-badge {
  align-self: flex-start;
  margin-bottom: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  color: #075985;
  background: #e0f2fe;
  font-size: 0.8rem;
  font-weight: 900;
}

.impact-section {
  margin-top: 42px;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.96), rgba(10, 37, 70, 0.94)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(16, 185, 129, 0.1));
}

.impact-section h2,
.impact-section h3 {
  color: var(--white);
}

.impact-section p {
  color: #dbeafe;
}

.impact-section .eyebrow {
  color: #7dd3fc;
}

.impact-cards {
  display: grid;
  gap: 18px;
}

.impact-cards article {
  border-color: rgba(125, 211, 252, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.impact-cards p {
  color: #dbeafe;
}

.proof-section {
  padding-bottom: 44px;
}

.cta-section {
  margin-top: 28px;
  margin-bottom: 72px;
  background:
    linear-gradient(135deg, #ffffff 0%, #eff6ff 58%, #ecfeff 100%);
}

.cta-actions {
  display: grid;
  gap: 14px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, minmax(160px, 1fr));
  gap: 30px;
  padding: 44px clamp(20px, 5vw, 72px);
  color: #dbeafe;
  background: linear-gradient(135deg, var(--navy-950), var(--navy-900));
}

.footer-brand img {
  width: min(236px, 58vw);
  filter: drop-shadow(0 12px 26px rgba(255,255,255,0.12));
}

.footer-brand small,
.site-footer p {
  color: #93c5fd;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer nav strong {
  color: var(--white);
}

.site-footer nav a {
  color: #dbeafe;
  text-decoration: none;
}

.site-footer nav a:hover {
  color: #67e8f9;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (max-width: 1180px) {
  .hero,
  .trust-section,
  .health-check-grid,
  .impact-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .module-grid,
  .pricing-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .health-form-grid,
  .health-form-grid-compact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-command-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 17rem;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links,
  .header-actions {
    width: 100%;
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-metrics,
  .module-grid,
  .pricing-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .seo-selection-guide {
    grid-template-columns: 1fr;
    padding-left: 20px;
  }

  .hero-command-strip ul {
    grid-template-columns: 1fr;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
  }

  .health-check-panel {
    position: static;
  }

  .trust-section,
  .impact-section,
  .cta-section {
    margin-right: 16px;
    margin-left: 16px;
    border-radius: 26px;
    padding: 32px 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .resource-body {
    grid-template-columns: 1fr;
  }

  .resource-toc {
    position: static;
  }

  .decision-grid,
  .resource-next {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .section {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-links,
  .header-actions,
  .hero-actions,
  .cta-actions {
    max-width: calc(100vw - 40px);
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 2.55rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .header-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .header-actions .button,
  .hero-actions,
  .hero-actions .button,
  .cta-actions,
  .cta-actions .button {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-row strong {
    text-align: left;
  }

  .health-check-question {
    grid-template-columns: 1fr;
  }
}
