:root {
	--navy: #071B33;
	--navy-2: #0B2748;
	--blue: #1663F2;
	--cyan: #00A6D6;
	--steel: #64748B;
	--light: #F5F8FC;
	--white: #FFFFFF;
	--text: #111827;
	--border: #E2E8F0;
	--orange: #F59E0B;
	--ink: var(--text);
	--line: var(--border);
	--soft: var(--light);
	--teal: var(--cyan);
	--green: var(--orange);
	--blue-soft: #EAF3FF;
	--shadow: 0 16px 34px rgba(7, 27, 51, 0.1);
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	color: var(--ink);
	background: var(--white);
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

a {
	color: var(--blue);
	text-decoration: none;
}

a:hover,
a:focus {
	text-decoration: underline;
}

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

.wrap {
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
}

.wrap.narrow {
	width: min(820px, calc(100% - 32px));
}

.skip-link,
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 10px;
	left: 10px;
	width: auto;
	height: auto;
	padding: 8px 12px;
	clip: auto;
	color: var(--white);
	background: var(--navy);
}

.top-contact-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 4px 8px;
	padding: 7px 12px;
	color: var(--white);
	background: var(--navy);
	font-size: 12px;
	line-height: 1.35;
	text-align: center;
}

.top-contact-bar a {
	color: var(--white);
	white-space: nowrap;
}

.site-header {
	position: sticky;
	z-index: 50;
	top: 0;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}

.nav-shell {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto auto;
	align-items: center;
	gap: 12px;
	width: min(1160px, calc(100% - 32px));
	margin: 0 auto;
	padding: 12px 0;
}

.brand {
	display: inline-flex;
	grid-column: 1;
	grid-row: 1;
	align-items: center;
	gap: 10px;
	color: var(--ink);
	text-decoration: none;
	min-width: 0;
}

.brand:hover,
.brand:focus {
	text-decoration: none;
}

.brand-mark {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	flex: 0 0 36px;
	color: var(--white);
	background: linear-gradient(135deg, var(--blue), var(--cyan));
	border-radius: 8px;
	font-weight: 700;
}

.brand strong,
.brand small {
	display: block;
	white-space: normal;
	overflow-wrap: anywhere;
}

.brand strong {
	font-size: 16px;
	line-height: 1.2;
}

.brand small {
	color: var(--steel);
	font-size: 12px;
	line-height: 1.2;
}

.menu-toggle {
	display: inline-flex;
	grid-column: 2;
	grid-row: 1;
	flex-direction: column;
	justify-content: center;
	gap: 4px;
	width: 42px;
	height: 42px;
	padding: 0 10px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--white);
	cursor: pointer;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--navy);
}

.primary-nav {
	display: none;
	grid-column: 1 / -1;
	grid-row: 2;
}

.nav-open .primary-nav {
	display: block;
}

.primary-nav ul {
	display: grid;
	gap: 4px;
	padding: 8px 0 0;
	margin: 0;
	list-style: none;
}

.primary-nav a {
	display: block;
	padding: 10px 0;
	color: var(--ink);
	font-weight: 700;
}

.nav-quote {
	display: inline-flex;
	grid-column: 3;
	grid-row: 1;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 12px;
	color: var(--white);
	background: var(--blue);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
	box-shadow: 0 10px 20px rgba(22, 99, 242, 0.22);
}

.nav-quote:hover,
.nav-quote:focus {
	background: #0f55d8;
	text-decoration: none;
}

.hero {
	position: relative;
	overflow: hidden;
}

.hero,
.page-hero {
	background: var(--soft);
	border-bottom: 1px solid var(--line);
}

.hero {
	padding: 42px 0 38px;
}

.page-hero {
	padding: 32px 0;
}

.hero-grid,
.page-hero-grid,
.split,
.two-tables,
.cta-grid {
	display: grid;
	gap: 24px;
}

.hero-copy,
.page-hero-grid > div:first-child {
	max-width: 760px;
}

.eyebrow {
	margin: 0 0 8px;
	color: var(--green);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

h1,
h2,
h3 {
	margin: 0 0 12px;
	color: var(--navy);
	line-height: 1.18;
}

h1 {
	font-size: 34px;
}

h2 {
	font-size: 26px;
}

h3 {
	font-size: 18px;
}

p {
	margin: 0 0 16px;
}

.hero-subheadline {
	max-width: 760px;
	color: #31465a;
	font-size: 18px;
}

.hero-proof {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-top: 20px;
}

.hero-proof span {
	display: inline-flex;
	align-items: center;
	min-height: 34px;
	padding: 6px 10px;
	color: var(--navy);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 700;
}

.button-row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 22px;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.button:hover,
.button:focus {
	text-decoration: none;
}

.button.primary {
	color: var(--white);
	background: var(--blue);
}

.button.secondary {
	color: var(--navy);
	background: var(--white);
	border-color: var(--line);
}

.button.ghost {
	color: var(--navy);
	background: transparent;
	border-color: var(--steel);
}

.button.light {
	color: var(--navy);
	background: var(--white);
}

.button.full {
	width: 100%;
}

.hero-panel {
	padding: 16px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.hero-visual {
	position: relative;
	margin: 0;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.hero-visual img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.hero-visual figcaption {
	display: grid;
	gap: 3px;
	padding: 14px 16px;
	border-top: 1px solid var(--line);
	background: var(--white);
}

.hero-visual figcaption span {
	color: var(--steel);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
}

.hero-visual figcaption strong {
	color: var(--navy);
	line-height: 1.3;
}

.hero-panel.compact {
	align-self: start;
}

.line-diagram {
	display: grid;
	gap: 10px;
}

.diagram-node {
	display: grid;
	grid-template-columns: 42px 1fr;
	align-items: center;
	min-height: 48px;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: var(--soft);
	overflow: hidden;
}

.diagram-node span {
	display: grid;
	place-items: center;
	height: 100%;
	color: var(--white);
	background: var(--navy-2);
	font-size: 12px;
	font-weight: 700;
}

.diagram-node strong {
	padding: 8px 10px;
	color: var(--navy);
}

.section {
	padding: 46px 0;
}

.section.muted {
	background: var(--soft);
}

.section-heading {
	max-width: 760px;
	margin-bottom: 22px;
}

.capacity-grid,
.component-grid,
.steps-grid,
.mini-card-grid,
.link-grid,
.pill-grid,
.buyer-path-grid {
	display: grid;
	gap: 14px;
}

.component-card,
.step-card,
.mini-card-grid article,
.buyer-path-card {
	display: block;
	padding: 18px;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
	text-decoration: none;
}

.buyer-path-card {
	position: relative;
	overflow: hidden;
}

.buyer-path-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: var(--blue);
}

.buyer-path-card:hover,
.buyer-path-card:focus {
	border-color: var(--blue);
	text-decoration: none;
}

.buyer-path-card strong,
.buyer-path-card span {
	display: block;
}

.buyer-path-card strong {
	color: var(--navy);
	font-size: 17px;
	line-height: 1.25;
}

.buyer-path-card span {
	margin-top: 8px;
	color: var(--steel);
	font-size: 14px;
	line-height: 1.55;
}

.capacity-card {
	display: grid;
	gap: 14px;
	padding: 18px;
	color: var(--ink);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.capacity-card:hover,
.capacity-card:focus {
	border-color: var(--teal);
	text-decoration: none;
}

.capacity-card strong {
	display: block;
	color: var(--navy);
	font-size: 24px;
	line-height: 1.1;
}

.capacity-card span,
.capacity-card small {
	display: block;
	margin-top: 8px;
	color: var(--steel);
}

.capacity-meta {
	display: grid;
	gap: 8px;
	margin: 14px 0 0;
	padding: 0;
}

.capacity-meta div {
	padding: 10px 12px;
	background: var(--blue-soft);
	border: 1px solid #d9e8ff;
	border-radius: 8px;
}

.capacity-meta dt {
	margin: 0 0 2px;
	color: var(--navy-2);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.capacity-meta dd {
	margin: 0;
	color: var(--steel);
	font-size: 14px;
	line-height: 1.45;
}

.capacity-card p {
	margin: 0;
	color: #31465a;
}

.capacity-actions {
	display: grid;
	gap: 8px;
	margin-top: auto;
}

.capacity-actions .button {
	width: 100%;
	min-height: 40px;
	font-size: 14px;
}

.component-card span,
.step-card span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 28px;
	margin-bottom: 12px;
	color: var(--white);
	background: var(--teal);
	border-radius: 8px;
	font-size: 12px;
	font-weight: 700;
}

.table-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.comparison-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.comparison-table thead th {
	color: var(--white);
	background: var(--navy);
}

.comparison-table tbody th {
	background: #f9fbfd;
}

.comparison-table td:nth-child(3) {
	background: #fbfdff;
}

.table-card h3 {
	padding: 16px 18px;
	margin: 0;
	border-bottom: 1px solid var(--line);
	background: #f9fbfd;
}

.table-scroll {
	width: 100%;
	overflow-x: auto;
}

table {
	width: 100%;
	border-collapse: collapse;
	min-width: 420px;
}

th,
td {
	padding: 13px 16px;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}

th {
	width: 36%;
	color: var(--navy);
	background: #fbfdff;
	font-weight: 700;
}

tr:last-child th,
tr:last-child td {
	border-bottom: 0;
}

.check-list {
	padding: 0;
	margin: 0;
	list-style: none;
}

.check-list li {
	position: relative;
	padding: 10px 0 10px 28px;
	border-bottom: 1px solid var(--line);
}

.check-list li::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 0;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: var(--teal);
}

.process-flow {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.flow-step {
	position: relative;
	flex: 1 1 150px;
	min-height: 54px;
	padding: 12px 14px 12px 42px;
	color: var(--navy);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	font-weight: 700;
}

.flow-step::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 15px;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background: var(--blue);
	box-shadow: 0 0 0 5px var(--blue-soft);
}

.pill-grid {
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.pill-grid span,
.link-grid a {
	display: block;
	padding: 13px 14px;
	color: var(--navy);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	font-weight: 700;
}

.link-grid a:hover,
.link-grid a:focus {
	border-color: var(--teal);
	text-decoration: none;
}

.cta-band {
	padding: 34px 0;
	color: var(--white);
	background: var(--navy);
}

.cta-band h2 {
	color: var(--white);
}

.cta-band p {
	max-width: 740px;
	margin-bottom: 0;
	color: #dbe8f0;
}

.cta-grid {
	align-items: center;
}

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

.faq-list details {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.faq-list summary {
	padding: 16px 18px;
	color: var(--navy);
	font-weight: 700;
	cursor: pointer;
}

.faq-list p {
	padding: 0 18px 18px;
	margin: 0;
}

.rfq-form {
	display: grid;
	gap: 14px;
	padding: 18px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	box-shadow: var(--shadow);
}

.rfq-form fieldset {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	padding: 16px;
	margin: 0;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fbfdff;
}

.rfq-form legend {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	padding: 0 4px;
	color: var(--navy);
	font-weight: 700;
}

.rfq-form legend span {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 4px 8px;
	color: var(--white);
	background: var(--navy);
	border-radius: 8px;
	font-size: 12px;
}

.rfq-form label {
	display: grid;
	gap: 6px;
	margin: 0;
	color: var(--navy);
	font-weight: 700;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
	width: 100%;
	min-height: 44px;
	padding: 10px 12px;
	color: var(--ink);
	background: var(--white);
	border: 1px solid #cbd8e2;
	border-radius: 8px;
	font: inherit;
}

.rfq-form textarea {
	resize: vertical;
}

.hp-field {
	display: none;
}

.form-confirmation {
	grid-column: 1 / -1;
	padding: 12px;
	color: #174a2d;
	background: #e9f7ee;
	border: 1px solid #b9dfc6;
	border-radius: 8px;
}

.form-confirmation p {
	margin: 4px 0 0;
}

.wizard-note-list {
	display: grid;
	gap: 10px;
	margin-top: 18px;
}

.wizard-note-list span {
	display: block;
	padding: 12px 14px;
	color: var(--navy);
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
	font-weight: 700;
}

.trust-section {
	background: var(--white);
}

.trust-grid {
	display: grid;
	gap: 14px;
}

.trust-grid article {
	padding: 18px;
	background: var(--blue-soft);
	border: 1px solid #c7e2f4;
	border-radius: 8px;
}

.trust-grid article h3 {
	margin-bottom: 8px;
}

.trust-grid article p {
	margin: 0;
	color: #31465a;
}

.contact-card {
	padding: 14px;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: 8px;
}

.contact-card p {
	margin: 0 0 8px;
}

.contact-card p:last-child {
	margin-bottom: 0;
}

.breadcrumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 14px;
	color: var(--steel);
	font-size: 14px;
}

.breadcrumbs a {
	color: var(--steel);
}

.text-link {
	font-weight: 700;
}

.site-footer {
	color: #d9e7ef;
	background: #0a243b;
}

.footer-grid {
	display: grid;
	gap: 26px;
	padding: 42px 0;
}

.site-footer h2 {
	color: var(--white);
	font-size: 18px;
}

.site-footer a {
	color: #e7f7ff;
}

.footer-contact {
	margin: 0;
}

.footer-links {
	display: grid;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

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

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 14px 0;
	font-size: 14px;
}

.mobile-sticky-contact {
	position: fixed;
	z-index: 80;
	right: 12px;
	bottom: 12px;
	display: grid;
	grid-template-columns: repeat(2, minmax(92px, 1fr));
	gap: 8px;
}

.mobile-sticky-contact a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 8px 10px;
	color: var(--white);
	background: var(--teal);
	border-radius: 8px;
	box-shadow: var(--shadow);
	font-weight: 700;
	text-decoration: none;
}

@media (min-width: 640px) {
	h1 {
		font-size: 42px;
	}

	h2 {
		font-size: 30px;
	}

	.capacity-grid,
	.component-grid,
	.steps-grid,
	.mini-card-grid,
	.link-grid,
	.buyer-path-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.rfq-form {
		grid-template-columns: 1fr;
	}

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

	.rfq-form fieldset legend,
	.rfq-form .full {
		grid-column: 1 / -1;
	}

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

@media (min-width: 860px) {
	.hero-grid,
	.page-hero-grid,
	.split,
	.two-tables {
		grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
		align-items: start;
	}

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

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

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

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

	.footer-grid {
		grid-template-columns: 1.2fr 0.8fr 0.8fr;
	}
}

@media (min-width: 980px) {
	.top-contact-bar {
		font-size: 13px;
	}

	.nav-shell {
		grid-template-columns: auto 1fr auto;
	}

	.menu-toggle {
		display: none;
	}

	.primary-nav {
		display: block;
		grid-column: auto;
		grid-row: auto;
	}

	.primary-nav ul {
		display: flex;
		align-items: center;
		justify-content: flex-end;
		gap: 18px;
		padding: 0;
	}

	.primary-nav a {
		padding: 8px 0;
		font-size: 14px;
	}

	.nav-quote {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		min-height: 40px;
		padding: 8px 14px;
		color: var(--white);
		background: var(--blue);
		border-radius: 8px;
		font-weight: 700;
		text-decoration: none;
	}

	.hero {
		padding: 74px 0 62px;
	}

	.section {
		padding: 60px 0;
	}

	.mobile-sticky-contact {
		display: none;
	}
}

@media (max-width: 380px) {
	.wrap,
	.nav-shell {
		width: min(100% - 22px, 1160px);
	}

	h1 {
		font-size: 30px;
	}

	.button {
		width: 100%;
	}

	.nav-shell {
		gap: 8px;
	}

	.nav-quote {
		min-height: 38px;
		padding: 8px 10px;
		font-size: 13px;
	}

	.mobile-sticky-contact {
		right: 8px;
		left: 8px;
	}
}
