:root {
	--ag-bg: #031427;
	--ag-navy: #071329;
	--ag-deep: #0b1f3a;
	--ag-panel: #102034;
	--ag-panel-2: #1b2a41;
	--ag-panel-3: #26364a;
	--ag-line: #334155;
	--ag-line-soft: rgba(185, 229, 243, .18);
	--ag-glass: #b9e5f3;
	--ag-text: #f8fafc;
	--ag-text-soft: #cbd5e1;
	--ag-muted: #94a3b8;
	--ag-dark-text: #0f172a;
	--ag-orange: #f97316;
	--ag-orange-hover: #ea580c;
	--ag-radius: 8px;
	--ag-radius-sm: 4px;
	--ag-header-h: 72px;
}

* {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	background: var(--ag-bg);
	color: var(--ag-text);
	font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
	font-size: 16px;
	line-height: 1.65;
}

a {
	color: inherit;
}

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

table {
	width: 100%;
	border-collapse: collapse;
}

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

.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;
}

.ag-container {
	width: min(1440px, calc(100% - 40px));
	margin: 0 auto;
}

.ag-main {
	min-height: 60vh;
	background: var(--ag-bg);
}

.ag-grid-bg {
	background-image:
		linear-gradient(to right, rgba(185, 229, 243, .06) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(185, 229, 243, .06) 1px, transparent 1px);
	background-size: 40px 40px;
}

.ag-site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(3, 20, 39, .9);
	border-bottom: 1px solid var(--ag-line);
	backdrop-filter: blur(12px);
}

.ag-header-inner {
	min-height: var(--ag-header-h);
	display: flex;
	align-items: center;
	gap: 28px;
}

.ag-brand {
	flex: 0 0 auto;
}

.ag-logo-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	color: var(--ag-text);
	font-weight: 900;
}

.ag-logo-mark {
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	color: var(--ag-bg);
	background: linear-gradient(135deg, var(--ag-glass), #f8fafc 52%, #ffb95f);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.ag-logo-text {
	font-size: 27px;
	line-height: 1;
	color: #d3e4fe;
}

.custom-logo-link {
	display: inline-flex;
	align-items: center;
}

.custom-logo {
	display: block;
	max-height: 46px;
	width: auto;
}

.ag-primary-nav {
	flex: 1 1 auto;
	display: flex;
	justify-content: center;
	min-width: 0;
}

.ag-nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.ag-nav-list a {
	position: relative;
	display: block;
	padding: 8px 0;
	color: var(--ag-text-soft);
	text-decoration: none;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}

.ag-nav-list a::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 2px;
	background: transparent;
}

.ag-nav-list a:hover,
.ag-nav-list .current-menu-item > a {
	color: var(--ag-text);
}

.ag-nav-list a:hover::after,
.ag-nav-list .current-menu-item > a::after {
	background: #ffb95f;
}

.ag-header-cta,
.ag-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 12px 20px;
	border: 1px solid transparent;
	border-radius: var(--ag-radius-sm);
	text-decoration: none;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.2;
	cursor: pointer;
	transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.ag-header-cta,
.ag-button-primary {
	background: #ffb95f;
	color: var(--ag-dark-text);
}

.ag-header-cta:hover,
.ag-button-primary:hover {
	background: var(--ag-orange);
	color: #fff;
}

.ag-header-cta {
	flex: 0 0 auto;
	min-height: 40px;
	padding: 10px 18px;
	white-space: nowrap;
}

.ag-button-secondary {
	color: var(--ag-text);
	border-color: var(--ag-line);
	background: rgba(16, 32, 52, .55);
}

.ag-button-secondary:hover {
	border-color: #ffb95f;
	color: #ffddb8;
}

.ag-text-link {
	color: #ffb95f;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none;
}

.ag-text-link:hover {
	color: var(--ag-orange);
}

.ag-nav-toggle {
	display: none;
	width: 42px;
	height: 42px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius-sm);
	background: rgba(16, 32, 52, .8);
	padding: 10px;
}

.ag-nav-toggle span:not(.screen-reader-text) {
	display: block;
	height: 2px;
	margin: 5px 0;
	background: var(--ag-text);
	border-radius: 2px;
}

.ag-hero {
	position: relative;
	min-height: 780px;
	display: flex;
	align-items: center;
	overflow: hidden;
	border-bottom: 1px solid var(--ag-line);
	background: var(--ag-bg);
}

.ag-hero-bg,
.ag-detail-hero-bg {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(3, 20, 39, .96) 0%, rgba(3, 20, 39, .82) 52%, rgba(3, 20, 39, .94) 100%),
		url("../images/industrial-hero.jpg") center / cover no-repeat;
	filter: saturate(.9);
}

.ag-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 360px;
	gap: 48px;
	align-items: end;
	padding: 90px 0 110px;
}

.ag-hero-copy {
	max-width: 920px;
}

.ag-kicker,
.ag-eyebrow {
	margin: 0 0 14px;
	color: #ffb95f;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 0;
}

.ag-kicker {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 12px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius-sm);
	background: rgba(16, 32, 52, .5);
}

.ag-kicker span {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: #ffb95f;
}

.ag-hero h1,
.ag-page-hero h1,
.ag-detail-hero h1 {
	margin: 0;
	max-width: 900px;
	color: #dbeafe;
	font-family: "Hanken Grotesk", Inter, sans-serif;
	font-size: 60px;
	line-height: 1.12;
	font-weight: 800;
}

.ag-hero p,
.ag-page-hero p,
.ag-detail-hero p {
	max-width: 760px;
	margin: 26px 0 0;
	color: var(--ag-text-soft);
	font-size: 20px;
	line-height: 1.55;
}

.ag-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	margin-top: 36px;
}

.ag-hero-spec,
.ag-spec-card {
	padding: 22px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	background: rgba(16, 32, 52, .86);
	backdrop-filter: blur(8px);
}

.ag-hero-spec > span,
.ag-spec-card > span {
	display: block;
	margin-bottom: 8px;
	color: #ffb95f;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 12px;
	font-weight: 900;
}

.ag-hero-spec strong {
	display: block;
	margin-bottom: 18px;
	color: var(--ag-text);
	font-size: 22px;
	line-height: 1.25;
}

.ag-hero-spec dl,
.ag-spec-card dl {
	display: grid;
	gap: 0;
	margin: 0;
}

.ag-hero-spec dl div,
.ag-spec-card dl div {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 18px;
	padding: 12px 0;
	border-top: 1px solid var(--ag-line);
}

.ag-hero-spec dt,
.ag-spec-card dt {
	color: var(--ag-muted);
	font-weight: 700;
}

.ag-hero-spec dd,
.ag-spec-card dd {
	margin: 0;
	color: #dbeafe;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
	font-weight: 800;
	text-align: right;
}

.ag-trust {
	background: var(--ag-panel);
	border-bottom: 1px solid var(--ag-line);
}

.ag-trust-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1px;
	padding: 26px 0;
}

.ag-trust-grid div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-height: 72px;
	color: var(--ag-text-soft);
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
	font-weight: 800;
	text-align: center;
}

.ag-trust-grid span {
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 2px solid #ffb95f;
	box-shadow: 0 0 18px rgba(255, 185, 95, .3);
}

.ag-section {
	padding: 86px 0;
}

.ag-section-dark {
	color: var(--ag-text);
	background: var(--ag-bg);
}

.ag-section-surface,
.ag-section-alt {
	color: var(--ag-text);
	background: var(--ag-panel);
	border-top: 1px solid var(--ag-line);
	border-bottom: 1px solid var(--ag-line);
}

.ag-section-heading {
	max-width: 860px;
	margin: 0 auto 36px;
	text-align: center;
}

.ag-section-heading-split,
.ag-split-heading {
	max-width: none;
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(260px, 440px);
	gap: 32px;
	align-items: end;
	text-align: left;
}

.ag-section-heading h2,
.ag-split-heading h2,
.ag-rfq-heading h2,
.ag-cta-band h2,
.ag-page-content h2,
.ag-detail-content h2,
.ag-checklist-grid h2,
.ag-info-grid h2 {
	margin: 0;
	color: #dbeafe;
	font-family: "Hanken Grotesk", Inter, sans-serif;
	font-size: 38px;
	line-height: 1.18;
	font-weight: 800;
}

.ag-section-heading p,
.ag-split-heading p,
.ag-info-grid p,
.ag-page-content p {
	margin: 14px 0 0;
	color: var(--ag-text-soft);
}

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

.ag-card {
	position: relative;
	display: flex;
	min-height: 230px;
	flex-direction: column;
	padding: 24px;
	overflow: hidden;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	background:
		linear-gradient(145deg, rgba(27, 42, 65, .95), rgba(16, 32, 52, .95)),
		linear-gradient(to bottom, rgba(185, 229, 243, .08), transparent);
	color: var(--ag-text);
	text-decoration: none;
}

.ag-card::after {
	content: "";
	position: absolute;
	inset: auto -20% -40% 35%;
	height: 120px;
	background: radial-gradient(circle, rgba(185, 229, 243, .12), transparent 64%);
	pointer-events: none;
}

.ag-card:hover {
	border-color: rgba(255, 185, 95, .75);
	background: linear-gradient(145deg, rgba(38, 54, 74, .98), rgba(16, 32, 52, .98));
}

.ag-card-mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	min-width: 64px;
	height: 28px;
	margin-bottom: auto;
	padding: 0 9px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius-sm);
	background: rgba(3, 20, 39, .55);
	color: var(--ag-glass);
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 12px;
	font-weight: 900;
}

.ag-card h3 {
	margin: 28px 0 10px;
	color: #f8fafc;
	font-size: 22px;
	line-height: 1.25;
}

.ag-card p {
	margin: 0;
	color: var(--ag-text-soft);
	font-size: 15px;
}

.ag-two-panels,
.ag-checklist-grid,
.ag-info-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
	align-items: start;
}

.ag-glass-panel,
.ag-info-grid > div,
.ag-checklist-grid > div,
.ag-page-content .ag-info-grid > div {
	padding: 28px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	background: rgba(16, 32, 52, .95);
}

.ag-glass-panel h2,
.ag-glass-panel h3 {
	margin: 0 0 20px;
	color: #dbeafe;
	font-size: 28px;
	line-height: 1.2;
}

.ag-glass-panel .ag-card-grid {
	grid-template-columns: 1fr;
}

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

.ag-chip-grid a {
	display: flex;
	align-items: center;
	min-height: 52px;
	padding: 12px 14px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius-sm);
	background: rgba(3, 20, 39, .42);
	color: var(--ag-text);
	text-decoration: none;
	font-weight: 800;
}

.ag-chip-grid a:hover {
	border-color: #ffb95f;
	color: #ffddb8;
}

.ag-library-list {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 20px;
}

.ag-library-card,
.ag-library-list a {
	display: block;
	min-height: 174px;
	padding: 22px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	background: rgba(16, 32, 52, .95);
	color: var(--ag-text);
	text-decoration: none;
}

.ag-library-card span,
.ag-library-list a > span {
	display: block;
	margin-bottom: 20px;
	color: #ffb95f;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 12px;
	font-weight: 900;
}

.ag-library-card strong,
.ag-library-list a strong {
	display: block;
	color: #f8fafc;
	font-size: 22px;
	line-height: 1.25;
}

.ag-library-card em,
.ag-library-list a em {
	display: block;
	margin-top: 12px;
	color: var(--ag-muted);
	font-style: normal;
}

.ag-page-hero,
.ag-detail-hero {
	position: relative;
	overflow: hidden;
	color: var(--ag-text);
	background:
		linear-gradient(90deg, rgba(3, 20, 39, .96), rgba(7, 19, 41, .85)),
		var(--ag-bg);
	border-bottom: 1px solid var(--ag-line);
}

.ag-page-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(3, 20, 39, .95), rgba(3, 20, 39, .72)), url("../images/glass-processing.jpg") center / cover no-repeat;
	opacity: .55;
}

.ag-page-hero-inner {
	position: relative;
	z-index: 1;
	min-height: 390px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 32px;
	align-items: center;
	padding: 72px 0;
}

.ag-page-hero-simple .ag-container {
	position: relative;
	z-index: 1;
	padding: 76px 0;
}

.ag-contact-hero::before {
	opacity: .25;
	background: linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(3, 20, 39, .88));
}

.ag-breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-bottom: 28px;
	color: var(--ag-muted);
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
	font-weight: 700;
}

.ag-breadcrumb a {
	text-decoration: none;
}

.ag-breadcrumb a:hover {
	color: #ffb95f;
}

.ag-detail-hero {
	min-height: 560px;
	display: flex;
	align-items: center;
}

.ag-detail-hero-bg {
	background:
		linear-gradient(90deg, rgba(3, 20, 39, .98), rgba(3, 20, 39, .72) 58%, rgba(3, 20, 39, .38)),
		url("../images/cnc-glass-machining.jpg") center / cover no-repeat;
}

.ag-detail-hero-grid {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 48px;
	align-items: center;
	padding: 84px 0;
}

.ag-quick-answer h2,
.ag-spec-card h2 {
	margin: 0 0 12px;
	color: #dbeafe;
	font-size: 24px;
}

.ag-quick-answer p {
	margin: 0 0 18px;
	color: var(--ag-text-soft);
	font-size: 15px;
}

.ag-detail-content {
	background: var(--ag-bg);
}

.ag-wp-content,
.ag-detail-grid section,
.ag-detail-block,
.ag-tabbed-summary section {
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	background: rgba(16, 32, 52, .95);
}

.ag-wp-content {
	max-width: 960px;
	margin: 0 auto 28px;
	padding: 28px;
	color: var(--ag-text-soft);
}

.ag-wp-content :where(h1, h2, h3, h4) {
	color: #dbeafe;
}

.ag-tabbed-summary {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin-bottom: 28px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	overflow: hidden;
	background: var(--ag-line);
}

.ag-tabbed-summary section {
	border: 0;
	border-radius: 0;
	padding: 24px;
}

.ag-tabbed-summary span {
	color: #ffb95f;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-weight: 900;
}

.ag-tabbed-summary h2 {
	margin-top: 12px;
	font-size: 24px;
}

.ag-tabbed-summary p {
	color: var(--ag-text-soft);
}

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

.ag-detail-grid section,
.ag-detail-block {
	padding: 24px;
}

.ag-detail-grid p,
.ag-detail-block p {
	margin: 0;
	color: var(--ag-text-soft);
}

.ag-detail-grid h2,
.ag-detail-block h2 {
	margin: 0 0 12px;
	font-size: 26px;
}

.ag-detail-block {
	margin-top: 20px;
}

.ag-detail-block .ag-card-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ag-faq details {
	border-top: 1px solid var(--ag-line);
	padding: 15px 0;
}

.ag-faq details:first-of-type {
	border-top: 0;
}

.ag-faq summary {
	cursor: pointer;
	color: #f8fafc;
	font-weight: 900;
}

.ag-faq p {
	margin-top: 8px;
}

.ag-table-wrap {
	overflow-x: auto;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	background: rgba(16, 32, 52, .96);
}

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

.ag-table-wrap th {
	color: #dbeafe;
	background: var(--ag-panel-2);
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
}

.ag-table-wrap td {
	color: var(--ag-text-soft);
}

.ag-table-wrap td:nth-child(2),
.ag-table-wrap td:nth-child(3) {
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 13px;
}

.ag-table-wrap tr:nth-child(even) td {
	background: rgba(38, 54, 74, .34);
}

.ag-table-wrap tr:last-child td {
	border-bottom: 0;
}

.ag-check-list {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.ag-check-list li {
	position: relative;
	padding-left: 28px;
	color: var(--ag-text-soft);
}

.ag-check-list li::before {
	content: "";
	position: absolute;
	left: 0;
	top: .58em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ffb95f;
	box-shadow: 0 0 0 4px rgba(255, 185, 95, .12);
}

.ag-process-flow {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}

.ag-process-flow div {
	padding: 24px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	background: rgba(16, 32, 52, .95);
}

.ag-process-flow strong {
	display: block;
	color: #ffb95f;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 28px;
}

.ag-process-flow span {
	display: block;
	margin-top: 12px;
	color: var(--ag-text);
	font-weight: 900;
}

.ag-rfq-section {
	background: #000;
	color: var(--ag-text);
	border-top: 1px solid var(--ag-line);
	border-bottom: 1px solid var(--ag-line);
}

.ag-rfq-heading {
	max-width: 880px;
	margin-bottom: 42px;
}

.ag-rfq-heading h2 {
	font-size: 56px;
}

.ag-rfq-heading p {
	color: var(--ag-text-soft);
	font-size: 20px;
}

.ag-rfq-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 420px;
	gap: 28px;
	align-items: start;
}

.ag-rfq-form,
.ag-rfq-side-card {
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius);
	background: #102034;
}

.ag-rfq-form {
	padding: 32px;
}

.ag-form-block h3,
.ag-rfq-side-card h3 {
	margin: 0 0 22px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--ag-line);
	color: #dbeafe;
	font-size: 28px;
}

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

.ag-form-grid label {
	display: grid;
	gap: 8px;
	color: #cbd5e1;
	font-weight: 850;
}

.ag-form-grid span {
	font-size: 14px;
}

.ag-form-grid input,
.ag-form-grid select,
.ag-form-grid textarea {
	width: 100%;
	min-height: 48px;
	border: 1px solid #526174;
	border-radius: var(--ag-radius-sm);
	background: #06182d;
	color: var(--ag-text);
	padding: 11px 14px;
	outline: none;
}

.ag-form-grid textarea {
	resize: vertical;
	min-height: 142px;
}

.ag-form-grid input:focus,
.ag-form-grid select:focus,
.ag-form-grid textarea:focus {
	border-color: #ffb95f;
	box-shadow: 0 0 0 1px rgba(255, 185, 95, .55);
}

.ag-field-wide {
	grid-column: 1 / -1;
}

.ag-file-field {
	padding: 18px;
	border: 1px dashed #526174;
	border-radius: var(--ag-radius-sm);
	background: #06182d;
}

.ag-file-field input {
	min-height: auto;
	padding: 0;
	border: 0;
}

.ag-file-field em {
	color: var(--ag-muted);
	font-style: normal;
	font-size: 14px;
}

.ag-submit-button {
	width: 100%;
	margin-top: 24px;
	border: 0;
}

.ag-hp-field {
	position: absolute;
	left: -9999px;
	visibility: hidden;
}

.ag-form-status {
	margin: 0 0 18px;
	padding: 12px 14px;
	border-radius: var(--ag-radius-sm);
	font-weight: 900;
}

.ag-form-status-success {
	background: rgba(22, 101, 52, .25);
	color: #bbf7d0;
	border: 1px solid rgba(34, 197, 94, .4);
}

.ag-form-status-error {
	background: rgba(127, 29, 29, .28);
	color: #fecaca;
	border: 1px solid rgba(248, 113, 113, .42);
}

.ag-rfq-sidebar {
	display: grid;
	gap: 24px;
}

.ag-rfq-side-card {
	padding: 28px;
}

.ag-rfq-side-card dl {
	display: grid;
	gap: 22px;
	margin: 0;
}

.ag-rfq-side-card dt {
	color: var(--ag-muted);
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 12px;
	font-weight: 900;
	text-transform: uppercase;
}

.ag-rfq-side-card dd {
	margin: 6px 0 0;
	color: #dbeafe;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 15px;
	font-weight: 800;
}

.ag-rfq-side-card a {
	color: inherit;
	text-decoration: none;
}

.ag-rfq-next ol {
	display: grid;
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
	counter-reset: rfq;
}

.ag-rfq-next li {
	position: relative;
	padding-left: 48px;
	counter-increment: rfq;
}

.ag-rfq-next li::before {
	content: counter(rfq);
	position: absolute;
	left: 0;
	top: 2px;
	width: 28px;
	height: 28px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 1px solid var(--ag-line);
	color: #ffb95f;
	font-family: "JetBrains Mono", Consolas, monospace;
	font-size: 12px;
	font-weight: 900;
}

.ag-rfq-next strong {
	display: block;
	color: #dbeafe;
}

.ag-rfq-next span {
	display: block;
	margin-top: 4px;
	color: var(--ag-text-soft);
}

.ag-cta-band {
	padding: 72px 0;
	text-align: center;
	color: var(--ag-text);
	background:
		linear-gradient(90deg, rgba(3, 20, 39, .94), rgba(3, 20, 39, .8)),
		url("../images/glass-solutions.jpg") center / cover no-repeat;
	border-top: 1px solid var(--ag-line);
}

.ag-cta-band p {
	max-width: 720px;
	margin: 14px auto 28px;
	color: var(--ag-text-soft);
}

.ag-site-footer {
	color: var(--ag-text-soft);
	background: #061225;
	border-top: 1px solid var(--ag-line);
}

.ag-footer-grid {
	display: grid;
	grid-template-columns: minmax(260px, 1.35fr) repeat(4, minmax(150px, 1fr));
	gap: 34px 24px;
	padding: 58px 0 34px;
}

.ag-footer-brand {
	grid-row: span 2;
}

.ag-footer-logo {
	margin-bottom: 16px;
}

.ag-footer-brand p {
	margin: 0 0 14px;
	max-width: 440px;
}

.ag-footer-contact a {
	display: block;
	color: var(--ag-text);
	text-decoration: none;
}

.ag-footer-links h2 {
	margin: 0 0 12px;
	color: #f8fafc;
	font-size: 15px;
	line-height: 1.2;
}

.ag-footer-links ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ag-footer-links a {
	display: block;
	padding: 4px 0;
	color: var(--ag-text-soft);
	text-decoration: none;
}

.ag-footer-links a:hover {
	color: #ffb95f;
}

.ag-footer-bottom {
	display: flex;
	justify-content: space-between;
	gap: 18px;
	padding: 18px 0;
	border-top: 1px solid var(--ag-line);
	font-size: 14px;
}

.ag-page-content {
	max-width: 1040px;
}

.ag-page-content :where(p, li) {
	color: var(--ag-text-soft);
}

.ag-post-card {
	padding: 22px 0;
	border-bottom: 1px solid var(--ag-line);
}

.ag-post-card h2 {
	margin: 0 0 8px;
}

.ag-post-card a {
	color: #dbeafe;
	text-decoration: none;
}

.nav-links,
.pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 28px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--ag-line);
	border-radius: var(--ag-radius-sm);
	color: var(--ag-text);
	text-decoration: none;
}

.page-numbers.current {
	background: #ffb95f;
	color: var(--ag-dark-text);
	border-color: #ffb95f;
}

@media (max-width: 1180px) {
	.ag-nav-list {
		gap: 10px;
	}

	.ag-nav-list a {
		font-size: 12px;
	}

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

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

	.ag-footer-brand {
		grid-row: auto;
		grid-column: 1 / -1;
	}
}

@media (max-width: 900px) {
	:root {
		--ag-header-h: 66px;
	}

	.ag-container {
		width: min(100% - 28px, 760px);
	}

	.ag-header-inner {
		justify-content: space-between;
	}

	.ag-nav-toggle {
		display: block;
		order: 3;
	}

	.ag-header-cta {
		display: none;
	}

	.ag-primary-nav {
		position: absolute;
		left: 14px;
		right: 14px;
		top: calc(var(--ag-header-h) + 8px);
		display: none;
		padding: 12px;
		border: 1px solid var(--ag-line);
		border-radius: var(--ag-radius);
		background: rgba(3, 20, 39, .98);
	}

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

	.ag-nav-list {
		display: grid;
		gap: 4px;
		justify-content: stretch;
	}

	.ag-nav-list a {
		padding: 12px;
	}

	.ag-hero {
		min-height: 640px;
	}

	.ag-hero-grid,
	.ag-page-hero-inner,
	.ag-detail-hero-grid,
	.ag-rfq-layout,
	.ag-section-heading-split,
	.ag-split-heading,
	.ag-two-panels,
	.ag-checklist-grid,
	.ag-info-grid {
		grid-template-columns: 1fr;
	}

	.ag-hero-grid {
		align-items: center;
		padding: 64px 0;
	}

	.ag-hero h1,
	.ag-page-hero h1,
	.ag-detail-hero h1 {
		font-size: 44px;
	}

	.ag-hero p,
	.ag-page-hero p,
	.ag-detail-hero p {
		font-size: 18px;
	}

	.ag-hero-spec {
		max-width: 520px;
	}

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

	.ag-detail-hero-grid {
		padding: 58px 0;
	}

	.ag-tabbed-summary,
	.ag-detail-grid,
	.ag-process-flow {
		grid-template-columns: 1fr;
	}

	.ag-rfq-heading h2 {
		font-size: 40px;
	}
}

@media (max-width: 640px) {
	body {
		font-size: 15px;
	}

	.ag-container {
		width: calc(100% - 24px);
	}

	.ag-logo-text {
		font-size: 22px;
	}

	.ag-logo-mark {
		width: 30px;
		height: 30px;
	}

	.ag-hero {
		min-height: 560px;
	}

	.ag-hero-grid {
		padding: 46px 0;
	}

	.ag-hero h1,
	.ag-page-hero h1,
	.ag-detail-hero h1 {
		font-size: 34px;
	}

	.ag-section {
		padding: 58px 0;
	}

	.ag-section-heading,
	.ag-rfq-heading {
		text-align: left;
	}

	.ag-section-heading h2,
	.ag-split-heading h2,
	.ag-rfq-heading h2,
	.ag-cta-band h2,
	.ag-page-content h2,
	.ag-detail-content h2,
	.ag-checklist-grid h2,
	.ag-info-grid h2 {
		font-size: 28px;
	}

	.ag-card-grid,
	.ag-library-list,
	.ag-detail-block .ag-card-grid,
	.ag-form-grid,
	.ag-footer-grid,
	.ag-trust-grid {
		grid-template-columns: 1fr;
	}

	.ag-card {
		min-height: 0;
	}

	.ag-rfq-form,
	.ag-rfq-side-card,
	.ag-glass-panel,
	.ag-info-grid > div,
	.ag-checklist-grid > div,
	.ag-wp-content,
	.ag-detail-grid section,
	.ag-detail-block,
	.ag-tabbed-summary section {
		padding: 20px;
	}

	.ag-page-hero-inner,
	.ag-page-hero-simple .ag-container {
		min-height: 0;
		padding: 48px 0;
	}

	.ag-button,
	.ag-hero-actions .ag-button {
		width: 100%;
	}

	.ag-footer-bottom {
		display: grid;
	}
}

