:root {
  --blue: #073763;
  --blue-2: #00599c;
  --green: #55a51c;
  --green-2: #7cc242;
  --bg: #f4f8fb;
  --surface: #ffffff;
  --text: #152033;
  --muted: #667085;
  --border: #dce8f0;
  --soft-blue: #eaf4fb;
  --soft-green: #edf8e7;
  --warning: #f59e0b;
  --danger: #c2410c;
  --danger-bg: #fff1ed;
  --success-bg: #edf8e7;
  --warning-bg: #fff7e6;
  --shadow: 0 18px 60px rgba(7, 55, 99, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.site-header {
  position: relative;
  padding: 22px 52px 42px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 48%, #edf6fa 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.site-header::before,
.site-header::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.92;
}

.site-header::before {
  width: 560px;
  height: 190px;
  right: -150px;
  top: -92px;
  border-bottom: 14px solid var(--green);
  border-radius: 0 0 0 220px;
  transform: rotate(2deg);
}

.site-header::after {
  width: 620px;
  height: 220px;
  left: -180px;
  bottom: -150px;
  border-top: 18px solid var(--blue);
  border-radius: 220px 220px 0 0;
  transform: rotate(7deg);
}

.site-nav {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: #ffffff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.nav-links a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--border);
  background: #ffffff;
  outline: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  margin-top: -4px;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown[open] summary::after {
  margin-top: 4px;
  transform: rotate(225deg);
}

.nav-dropdown summary:hover,
.nav-dropdown summary:focus-visible,
.nav-dropdown[open] summary {
  border-color: var(--border);
  background: #ffffff;
  outline: none;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  min-width: 280px;
  display: grid;
  gap: 6px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(7, 55, 99, 0.16);
  padding: 8px;
}

.nav-dropdown-menu a {
  width: 100%;
  justify-content: flex-start;
  border-radius: 12px;
  padding: 10px 12px;
  text-align: left;
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.logo-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(7, 55, 99, 0.14);
}

.logo-panel img {
  width: 100%;
  border-radius: 18px;
}

.intro h1 {
  max-width: 780px;
  color: var(--blue);
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.eyebrow {
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro .tagline {
  display: inline-block;
  color: var(--green);
  border-bottom: 4px solid var(--green);
  padding-bottom: 7px;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 800;
}

.intro p:not(.tagline):not(.eyebrow) {
  max-width: 770px;
  color: #344054;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled,
.button:disabled:hover {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
  box-shadow: none;
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(85, 165, 28, 0.25);
  outline-offset: 2px;
}

.button.primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(85, 165, 28, 0.25);
}

.button.secondary {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(7, 55, 99, 0.07);
}

.content {
  padding: 42px 52px 54px;
}

.section {
  margin-bottom: 46px;
  scroll-margin-top: 24px;
}

.section-title {
  display: inline-block;
  color: var(--blue);
  border-bottom: 4px solid var(--green);
  padding-bottom: 6px;
  margin-bottom: 18px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 980px;
  margin-bottom: 20px;
  color: #344054;
  font-size: 17px;
}

.grid,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(7, 55, 99, 0.08);
  padding: 22px;
}

.card h3 {
  color: var(--blue);
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.25;
}

.card p,
.card li {
  color: var(--muted);
  font-size: 15px;
}

.card.feature {
  background: linear-gradient(135deg, var(--soft-blue), #ffffff);
}

.card.green {
  background: linear-gradient(135deg, var(--soft-green), #ffffff);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-item {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(7, 55, 99, 0.06);
  padding: 20px;
}

.process-item::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(7, 55, 99, 0.18);
  margin-bottom: 12px;
  font-weight: 800;
}

.process-item h3 {
  color: var(--blue);
  margin-bottom: 6px;
  font-size: 17px;
}

.process-item p {
  color: var(--muted);
  font-size: 15px;
}

.section-heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.threshold-note {
  max-width: 350px;
  border-left: 5px solid var(--green);
  border-radius: 14px;
  background: var(--soft-green);
  color: var(--blue);
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 800;
}

.screening-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--soft-blue), #ffffff 56%, var(--soft-green));
  box-shadow: 0 14px 38px rgba(7, 55, 99, 0.09);
  padding: 24px;
  margin-bottom: 18px;
}

.screening-intro h3 {
  color: var(--blue);
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 6px;
}

.screening-intro p {
  max-width: 760px;
  color: #344054;
}

.form-progress {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.form-progress li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #ffffff;
  color: var(--blue);
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.form-progress span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
}

.eligibility-form {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(7, 55, 99, 0.09);
  padding: 24px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-section {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 20px;
}

.form-section legend {
  color: var(--blue);
  padding: 0 8px;
  font-size: 18px;
  font-weight: 800;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label,
.control-group {
  min-width: 0;
}

label span,
.group-label {
  display: block;
  color: var(--blue);
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cfdce6;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  padding: 10px 12px;
}

textarea {
  min-height: 92px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #98a2b3;
}

.span-2 {
  grid-column: span 2;
}

.subsection-title {
  color: var(--blue);
  margin: 22px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}

.field-note {
  color: var(--muted);
  margin-bottom: 12px;
  font-size: 14px;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.month-grid label span {
  font-size: 13px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fbfdff;
  color: #344054;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.choice input {
  width: 17px;
  height: 17px;
  min-height: 0;
  flex: 0 0 17px;
  margin-top: 2px;
  accent-color: var(--green);
}

.wide-label {
  display: block;
  margin-top: 12px;
}

.consent-block {
  border-left: 6px solid var(--green);
  border-radius: 18px;
  background: var(--soft-green);
  padding: 16px;
}

.consent {
  border: 0;
  background: transparent;
  padding: 0;
}

.consent-block p {
  color: var(--muted);
  margin-top: 8px;
  font-size: 14px;
}

.form-errors {
  display: none;
  border: 1px solid #fecaca;
  border-radius: 16px;
  background: #fff1f2;
  color: #991b1b;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-weight: 700;
}

.form-errors.is-visible {
  display: block;
}

.result-card {
  border: 1px solid var(--border);
  border-left: 8px solid var(--green);
  border-radius: 24px;
  background: var(--success-bg);
  padding: 22px;
  margin: 20px 0;
}

.result-card.hidden {
  display: none;
}

.result-card.close {
  border-left-color: var(--warning);
  background: var(--warning-bg);
}

.result-card.likely,
.result-card.priority {
  border-left-color: var(--danger);
  background: var(--danger-bg);
}

.result-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.result-card h3 {
  color: var(--blue);
  margin: 4px 0 8px;
  font-size: 23px;
  line-height: 1.25;
}

.result-card p {
  color: #344054;
}

.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.result-metrics div {
  border: 1px solid rgba(7, 55, 99, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  padding: 14px;
}

.result-metrics dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.result-metrics dd {
  color: var(--blue);
  font-size: 22px;
  font-weight: 800;
}

.result-warnings {
  display: grid;
  gap: 10px;
}

.warning-note {
  border: 1px solid rgba(194, 65, 12, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: #7c2d12;
  padding: 12px;
  font-size: 14px;
  font-weight: 800;
}

.disclaimer {
  border-top: 1px solid rgba(7, 55, 99, 0.12);
  margin-top: 16px;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 700;
}

.motor-section .threshold-note,
.chiller-section .threshold-note,
.compressor-section .threshold-note,
.boiler-section .threshold-note {
  max-width: 430px;
}

.motor-calculator-form,
.chiller-calculator-form,
.compressor-calculator-form,
.boiler-calculator-form {
  scroll-margin-top: 24px;
}

.motor-intro,
.chiller-intro,
.compressor-intro,
.boiler-intro {
  background: linear-gradient(135deg, #ffffff, var(--soft-blue) 56%, var(--soft-green));
}

.motor-result-panel {
  border: 1px solid var(--border);
  border-left: 8px solid var(--green);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--soft-green), #ffffff 68%, var(--soft-blue));
  box-shadow: 0 14px 34px rgba(7, 55, 99, 0.08);
  padding: 22px;
  margin: 20px 0;
}

.motor-result-panel.hidden,
.motor-assessment-cta.hidden,
.chiller-assessment-cta.hidden,
.compressor-assessment-cta.hidden,
.compressor-opportunities.hidden,
.boiler-result-panel.hidden {
  display: none;
}

.motor-result-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.motor-result-heading h3 {
  color: var(--blue);
  margin-top: 4px;
  font-size: 23px;
  line-height: 1.25;
}

#motor-result-warnings:empty,
#chiller-result-warnings:empty,
#compressor-result-warnings:empty,
#boiler-result-warnings:empty {
  display: none;
}

.boiler-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.boiler-choice {
  align-items: center;
  min-height: 88px;
}

.boiler-choice > span {
  margin-bottom: 0;
}

.boiler-choice strong,
.boiler-choice small {
  display: block;
}

.boiler-choice strong {
  color: var(--blue);
  font-size: 15px;
}

.boiler-choice small {
  color: var(--muted);
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.boiler-output-selector {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  margin-bottom: 20px;
}

.boiler-output-selector .subsection-title {
  margin-top: 0;
}

.boiler-formula {
  border: 1px solid var(--border);
  border-left: 7px solid var(--blue);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, var(--soft-blue));
  margin: 0 0 20px;
  padding: 18px;
}

.boiler-formula h3 {
  color: var(--blue);
  margin: 4px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.boiler-formula > p:not(.result-kicker) {
  color: #344054;
  font-size: 15px;
}

.boiler-formula-text {
  border: 1px solid rgba(7, 55, 99, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--blue) !important;
  margin-top: 12px;
  padding: 12px 14px;
  font-size: 14px !important;
  font-weight: 800;
  line-height: 1.5;
}

.boiler-live-losses {
  border-left: 5px solid var(--green);
  border-radius: 14px;
  background: var(--soft-green);
  color: #225414;
  margin-top: 16px;
  padding: 12px 14px;
  font-weight: 800;
}

.boiler-result-summary {
  color: #344054;
  margin: -2px 0 14px;
  font-weight: 700;
}

.boiler-results-grid {
  margin-top: 16px;
}

.boiler-loss-summary {
  border: 1px solid rgba(7, 55, 99, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  color: #344054;
  margin-top: 16px;
  padding: 16px;
}

.boiler-loss-summary h4 {
  color: var(--blue);
  font-size: 18px;
  margin-bottom: 12px;
}

.boiler-loss-summary > p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.45;
}

.boiler-loss-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.boiler-loss-item {
  border: 1px solid rgba(7, 55, 99, 0.12);
  border-radius: 14px;
  background: rgba(234, 244, 251, 0.62);
  padding: 10px 12px;
}

.boiler-loss-item span,
.boiler-loss-item strong {
  display: block;
}

.boiler-loss-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.boiler-loss-item strong {
  color: var(--blue);
  margin-top: 5px;
  font-size: 17px;
}

.performance-message {
  border: 1px solid rgba(7, 55, 99, 0.12);
  border-left: 6px solid var(--blue);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--blue);
  padding: 13px 15px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 800;
}

.performance-message.excellent,
.performance-message.good {
  border-left-color: var(--green);
  background: rgba(237, 248, 231, 0.92);
  color: #225414;
}

.performance-message.moderate {
  border-left-color: var(--warning);
  background: var(--warning-bg);
  color: #7c2d12;
}

.performance-message.high {
  border-left-color: var(--danger);
  background: var(--warning-bg);
  color: #7c2d12;
}

.performance-message.poor {
  border-left-color: var(--danger);
  background: var(--danger-bg);
  color: #991b1b;
}

.performance-message:empty {
  display: none;
}

.performance-note {
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  background: rgba(234, 244, 251, 0.82);
  color: #344054;
  padding: 11px 13px;
  margin: -2px 0 14px;
  font-size: 14px;
  font-weight: 700;
}

.motor-payback-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.motor-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.motor-result-item {
  min-width: 0;
  border: 1px solid rgba(7, 55, 99, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  padding: 15px;
}

.motor-result-item.emphasis {
  border-color: rgba(85, 165, 28, 0.28);
  background: rgba(237, 248, 231, 0.92);
}

.motor-result-item.negative {
  border-color: rgba(194, 65, 12, 0.26);
  background: var(--danger-bg);
}

.motor-result-item span,
.motor-result-item small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.motor-result-item strong {
  display: block;
  color: var(--blue);
  margin: 8px 0 2px;
  font-size: 23px;
  font-weight: 800;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.motor-result-item.emphasis strong {
  color: #225414;
}

.motor-result-item.negative strong {
  color: #991b1b;
}

.motor-assessment-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--border);
  border-left: 7px solid var(--green);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(7, 55, 99, 0.08);
  padding: 18px;
  margin: 20px 0;
}

.motor-assessment-cta h3 {
  color: var(--blue);
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 4px;
}

.motor-assessment-cta p {
  color: var(--muted);
  font-size: 15px;
}

.motor-assessment-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.compressor-opportunities {
  border: 1px solid var(--border);
  border-left: 7px solid var(--blue);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, var(--soft-blue));
  padding: 18px;
  margin: 20px 0;
}

.compressor-opportunities h3 {
  color: var(--blue);
  font-size: 19px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.opportunity-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  list-style: none;
}

.opportunity-list li {
  position: relative;
  border: 1px solid rgba(7, 55, 99, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  color: #344054;
  padding: 10px 12px 10px 34px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.opportunity-list li::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.compressor-opportunities p {
  color: var(--muted);
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.calculator-note {
  border-left: 5px solid var(--blue);
  border-radius: 14px;
  background: var(--soft-blue);
  color: #344054;
  margin-top: 18px;
  padding: 13px 15px;
  font-weight: 700;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.submission-status {
  display: none;
  border-radius: 16px;
  margin-top: 18px;
  padding: 14px 16px;
  font-weight: 800;
}

.submission-status.is-visible {
  display: block;
}

.submission-status.success {
  background: var(--success-bg);
  color: #225414;
  border: 1px solid rgba(85, 165, 28, 0.22);
}

.submission-status.error {
  background: #fff1f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.highlight {
  border-left: 7px solid var(--green);
  border-radius: 22px;
  background: linear-gradient(135deg, var(--soft-blue), var(--soft-green));
  padding: 28px;
}

.highlight p {
  color: #344054;
  margin-bottom: 14px;
}

.highlight ul {
  padding-left: 20px;
}

.highlight li {
  color: #344054;
  margin-bottom: 8px;
}

.business-card-section {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #f6fbf3);
  box-shadow: 0 16px 44px rgba(7, 55, 99, 0.09);
  padding: 24px;
}

.business-card-image {
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(7, 55, 99, 0.14);
  padding: 10px;
}

.business-card-image img {
  border: 1px solid #e6eef3;
  border-radius: 16px;
}

.contact-details h2 {
  color: var(--blue);
  margin: 2px 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.contact-details .role {
  color: var(--green);
  margin-bottom: 18px;
  font-weight: 800;
}

.contact-list {
  display: grid;
  gap: 10px;
}

.contact-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  color: #344054;
  font-size: 16px;
}

.icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.contact-item:nth-child(2) .icon {
  background: var(--green);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.cta {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 26px;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(7, 55, 99, 0.97), rgba(0, 89, 156, 0.94));
  color: #ffffff;
  padding: 34px;
  overflow: hidden;
}

.cta h2 {
  margin-bottom: 8px;
  font-size: 28px;
  line-height: 1.2;
}

.cta p {
  color: #e8f2f8;
}

footer {
  border-top: 1px solid var(--border);
  background: #ffffff;
  color: var(--muted);
  text-align: center;
  padding: 24px 52px;
  font-size: 14px;
}

@media (max-width: 980px) {
  .site-header,
  .content,
  footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .site-nav,
  .section-heading-row,
  .screening-intro,
  .hero,
  .business-card-section,
  .cta {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: grid;
    justify-items: start;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .logo-panel {
    max-width: 250px;
  }

  .intro h1 {
    font-size: 38px;
  }

  .grid,
  .grid-2,
  .process,
  .form-progress,
  .result-metrics,
  .motor-results-grid,
  .opportunity-list,
  .boiler-loss-breakdown {
    grid-template-columns: 1fr;
  }

  .motor-result-heading,
  .motor-assessment-cta {
    display: grid;
    grid-template-columns: 1fr;
  }

  .motor-payback-pill {
    justify-self: start;
    white-space: normal;
  }

  .motor-assessment-actions {
    justify-content: flex-start;
  }

  .cta {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 18px;
  }

  .content {
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .nav-links a {
    flex: 1 1 auto;
    min-width: 130px;
  }

  .nav-dropdown {
    flex: 1 1 100%;
    min-width: 220px;
  }

  .nav-dropdown summary {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 8px;
    box-shadow: 0 10px 24px rgba(7, 55, 99, 0.11);
  }

  .nav-dropdown-menu a {
    min-width: 0;
  }

  .intro h1 {
    font-size: 32px;
  }

  .intro p:not(.tagline):not(.eyebrow),
  .lead {
    font-size: 16px;
  }

  .eligibility-form,
  .form-section,
  .screening-intro,
  .business-card-section,
  .highlight,
  .cta {
    border-radius: 18px;
    padding: 18px;
  }

  .form-grid,
  .month-grid,
  .checkbox-grid,
  .boiler-choice-grid {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .form-actions {
    justify-content: stretch;
  }

  .form-actions .button {
    width: 100%;
  }

  .motor-assessment-actions .button {
    width: 100%;
  }

  .contact-actions .button {
    width: 100%;
  }

}

@media print {
  body {
    background: #ffffff;
  }

  .page {
    max-width: none;
    box-shadow: none;
  }

  .site-nav,
  .hero-actions,
  .form-actions,
  .motor-assessment-actions,
  .submission-status,
  footer {
    display: none !important;
  }

  .site-header,
  .content {
    padding: 18px;
  }

  .motor-result-panel,
  .boiler-result-panel,
  .compressor-opportunities,
  .motor-assessment-cta,
  .eligibility-form {
    box-shadow: none;
    break-inside: avoid;
  }

  #boiler-calculator-form > :not(#boiler-result-card) {
    display: none !important;
  }
}
