:root {
	--navy: #0f2235;
	--navy-lt: #183048;
	--teal: #1a7a80;
	--teal-lt: #22a0a8;
	--sage: #3a7d58;
	--sage-lt: #4ea872;
	--amber: #c87820;
	--amber-lt: #e09030;
	--sun: #ffd580;
	--lavender: #7b6fa8;
	--coral: #d4604a;
	--cream: #fefcf7;
	--warm: #f8f3eb;
	--sand: #eee8dc;
	--sky: #eaf5f6;
	--mint: #eaf5ee;
	--body: #2c3e50;
	--muted: #6b7f8f;
	--white: #ffffff;
	--e: cubic-bezier(0.22, 0.61, 0.36, 1);
	--spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── NAV ── */
nav {
	background: rgba(254, 252, 247, 0.95);
}

.nav-logo {
	color: var(--navy);
}

.nav-links a {
	color: var(--teal);
}
.nav-links a:hover {
	color: rgba(200, 220, 235, 0.85);
}

.nav-cta {
	background: var(--teal);
	color: var(--white);
	font-weight: 800;
	font-size: 14px;
	padding: 10px 24px;
	border-radius: 100px;
	box-shadow: 0 4px 18px rgba(26, 122, 128, 0.3);
	transition:
		background 0.2s,
		transform 0.15s;
}

.nav-cta:hover {
	background: var(--teal-lt) !important;
	transform: translateY(-1px);
}

.nav-burger svg {
	fill: #000;
}

.nav-burger.nav-close svg {
	fill: #fff;
}

/* ── HERO ── */
.hero {
	min-height: 100vh;
	background: linear-gradient(
		160deg,
		var(--warm) 0%,
		var(--sky) 55%,
		var(--mint) 100%
	);
	padding: 100px 0;
	position: relative;
	overflow: hidden;
}

.hero-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
	min-height: calc(100vh - 200px);
}

.hero::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 560px;
	height: 560px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(26, 122, 128, 0.08) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero::after {
	content: '';
	position: absolute;
	bottom: -60px;
	left: 8%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(
		circle,
		rgba(58, 125, 88, 0.07) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(26, 122, 128, 0.1);
	border: 1px solid rgba(26, 122, 128, 0.2);
	border-radius: 100px;
	padding: 7px 16px 7px 12px;
	margin-bottom: 28px;
}

.badge-dot {
	min-width: 8px;
	min-height: 8px;
	border-radius: 50%;
	background: var(--teal);
	animation: blink 2.5s ease infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.3;
	}
}

.badge-text {
	font-size: 13px;
	font-weight: 600;
	color: var(--teal);
	letter-spacing: 0.03em;
}

.hero-h1 {
	font-size: clamp(32px, 3.6vw, 52px);
	color: var(--navy);
	line-height: 1.12;
	margin-bottom: 22px;
	animation: slideUp 0.8s var(--e) both;
}

.hero-h1 em {
	color: var(--teal);
	font-style: italic;
}

.hero-sub {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 400;
	color: var(--body);
	line-height: 1.78;
	margin-bottom: 40px;
	animation: slideUp 0.8s 0.1s var(--e) both;
}

.hero-sub strong {
	color: var(--navy);
	font-weight: 700;
}

.hero-btns {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	animation: slideUp 0.8s 0.2s var(--e) both;
}

.btn-teal,
.btn-outline {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	padding: clamp(10px, calc(8.559px + 0.45vw), 15px) clamp(20px, calc(17.117px + 0.901vw), 30px);
	font-weight: 700;
	border-radius: 100px;
}

.btn-teal {
	background: var(--teal);
	color: var(--white);
	box-shadow: 0 6px 24px rgba(26, 122, 128, 0.3);
	transition:
		transform 0.2s var(--spring),
		box-shadow 0.2s;
}

.btn-teal:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 10px 32px rgba(26, 122, 128, 0.4);
}

.btn-outline {
	background: transparent;
	color: var(--teal);
	border: 2px solid var(--teal);
	transition:
		background 0.2s,
		color 0.2s;
}

.btn-outline:hover {
	background: var(--teal);
	color: var(--white);
}

.hero-right {
	position: relative;
	z-index: 2;
	animation: slideUp 0.8s 0.15s var(--e) both;
}

.connection-info-card {
	opacity: 0;
	transform: translateX(100%);
}

.connection-info-card.fade-in-slide-left {
	opacity: 1;
	transform: translateX(0);
	transition: 0.6s ease;
}

.spec-card,
.optic-card,
.em-card,
.rare-card,
.faq-item {
	opacity: 0;
	transform: translateY(20px);
}

.spec-card.fade-in-up,
.optic-card.fade-in-up,
.em-card.fade-in-up,
.rare-card.fade-in-up,
.faq-item.fade-in-up {
	opacity: 1;
	transform: translateY(0);
	transition: 0.6s ease;
}

.bm-wrap,
#neuro-visual-disorders-form {
	opacity: 0;
}

.bm-wrap.fade-in,
#neuro-visual-disorders-form.fade-in {
	opacity: 1;
	transition: 0.6s ease;
}

.hp,
.ci-item {
	opacity: 0;
	transform: translateX(-100%);
}

.hp.fade-in-slide-right,
.ci-item.fade-in-slide-right {
	opacity: 1;
	transform: translateX(0);
	transition: 0.6s ease;
}

.reassure-cards {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.rc {
	background: var(--white);
	border-radius: 18px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	box-shadow: 0 4px clamp(15px, calc(12.117px + 0.901vw), 25px) rgba(0, 0, 0, 0.07);
	display: flex;
	align-items: flex-start;
	gap: 15px;
	transition: transform 0.25s var(--spring);
}

.rc-icon {
	font-size: clamp(24px, calc(23.423px + 0.18vw), 26px);
	flex-shrink: 0;
}

.rc-title {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 4px;
}

.rc-body {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--muted);
	line-height: 1.62;
}

.rc-body strong {
	color: var(--teal);
}

@keyframes slideUp {
	from {
		opacity: 0;
		transform: translateY(24px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── SHARED ── */

.eyebrow {
	font-size: 11px;
	font-weight: 500;
	color: var(--teal);
	letter-spacing: 0.2em;
	text-transform: uppercase;
	margin-bottom: 12px;
}

.sh {
	font-size: clamp(26px, 3vw, 44px);
	color: var(--navy);
	line-height: 1.15;
	margin-bottom: 16px;
	font-weight: 700;
}

.sh em {
	color: var(--teal);
	font-style: italic;
}

.sintro {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--body);
	line-height: 1.85;
	max-width: 720px;
	margin-bottom: clamp(30px, calc(24.234px + 1.802vw), 50px);
}

/* ── STATS BAND ── */
.stats-band {
	background: var(--teal);
	padding: 50px 0;
}

.stats-inner {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.stat {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	padding: 0 20px;
	border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat:first-child {
	padding-left: 0;
}
.stat:last-child {
	border-right: none;
	padding-right: 0;
}

.stat-n {
	font-size: clamp(26px, calc(19.081px + 2.162vw), 50px);
	color: var(--sun);
	line-height: 1;
	margin-bottom: 10px;
}

.stat-l {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: rgba(255, 255, 255, 0.82);
	line-height: 1.5;
}

.stat-s {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.4);
	margin-top: 6px;
	letter-spacing: 0.1em;
}

/* ── PROSE / INFO CARDS ── */
.two {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, calc(24.234px + 1.802vw), 50px);
	align-items: center;
}

.prose {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--body);
	line-height: 1.85;
	margin-bottom: 18px;
}

.prose:last-of-type {
	margin-bottom: 0;
}

.prose strong {
	color: var(--navy);
}

.info-card,
.sage-card,
.amber-card {
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border-radius: 14px;
}

.info-card {
	background: var(--sky);
	border-left: 3px solid var(--teal);
	margin-bottom: 14px;
}

.info-card h4,
.sage-card h4,
.amber-card h4 {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	font-weight: 700;
	margin-bottom: 8px;
}

.info-card h4 {
	color: var(--navy);
}

.info-card p,
.sage-card p,
.amber-card p {
	font-size: 14px;
	line-height: 1.72;
}

.info-card p {
	color: var(--body);
}

.sage-card {
	background: var(--mint);
	border-left: 3px solid var(--sage);
	margin-bottom: 14px;
}

.sage-card h4 {
	color: var(--navy);
}

.sage-card p {
	color: var(--body);
}

.amber-card {
	background: #fff9ee;
	border-left: 3px solid var(--amber);
}

.amber-card h4 {
	color: var(--navy);
}

.amber-card p {
	color: var(--body);
}

.lav-card {
	background: #f4f2fb;
	border-radius: 14px;
	padding: 26px;
	border-left: 4px solid var(--lavender);
	margin-bottom: 14px;
}

.lav-card h4 {
	font-size: 15px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 8px;
}

.lav-card p {
	font-size: 14px;
	color: var(--body);
	line-height: 1.72;
}

#connection {
	background:var(--white);
	padding: var(--vertical-padding) 0;
}

.connection-info-list {
	overflow: hidden;
}

/* ── DISEASE SPECTRUM GRID ── */
.spectrum {
	background: var(--warm);
	padding: var(--vertical-padding) 0;
}

.spec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(336px, 1fr));
	gap: 20px;
}

.spec-card {
	background: var(--white);
	border-radius: 18px;
	overflow: hidden;
	display: grid;
	grid-template-rows: auto 1fr;
	box-shadow: 0 3px 18px rgba(0, 0, 0, 0.07);
	transition:
		transform 0.25s var(--spring),
		box-shadow 0.25s;
}

.spec-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.sc-top {
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	display: flex;
	align-items: center;
	gap: 14px;
}

.sc-icon {
	font-size: clamp(26px, calc(23.694px + 0.721vw), 34px);
}

.sc-cat {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

.sc-title {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--navy);
	font-weight: 700;
}

.sc-body {
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.sc-body p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--body);
	line-height: 1.72;
	margin-bottom: 10px;
}

.sc-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.sc-tag {
	font-size: 11px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 100px;
}

.spec-card:nth-child(1) .sc-top {
	background: linear-gradient(135deg, #eaf5f6, #c8e8ea);
}

.spec-card:nth-child(1) .sc-cat {
	color: var(--teal);
}

.spec-card:nth-child(1) .sc-tag {
	background: rgba(26, 122, 128, 0.1);
	color: var(--teal);
}

.spec-card:nth-child(2) .sc-top {
	background: linear-gradient(135deg, #eaf5ee, #c5e5cf);
}

.spec-card:nth-child(2) .sc-cat {
	color: var(--sage);
}

.spec-card:nth-child(2) .sc-tag {
	background: rgba(58, 125, 88, 0.1);
	color: var(--sage);
}

.spec-card:nth-child(3) .sc-top {
	background: linear-gradient(135deg, #f4f2fb, #ddd8f0);
}

.spec-card:nth-child(3) .sc-cat {
	color: var(--lavender);
}

.spec-card:nth-child(3) .sc-tag {
	background: rgba(123, 111, 168, 0.1);
	color: var(--lavender);
}

.spec-card:nth-child(4) .sc-top {
	background: linear-gradient(135deg, #fff9ee, #f0e4c0);
}

.spec-card:nth-child(4) .sc-cat {
	color: var(--amber);
}

.spec-card:nth-child(4) .sc-tag {
	background: rgba(200, 120, 32, 0.1);
	color: var(--amber);
}

.spec-card:nth-child(5) .sc-top {
	background: linear-gradient(135deg, #fff0ee, #ffded8);
}

.spec-card:nth-child(5) .sc-cat {
	color: var(--coral);
}

.spec-card:nth-child(5) .sc-tag {
	background: rgba(212, 96, 74, 0.1);
	color: var(--coral);
}

.spec-card:nth-child(6) .sc-top {
	background: linear-gradient(135deg, #eaf5f6, #c8e8ea);
}

.spec-card:nth-child(6) .sc-cat {
	color: var(--teal-lt);
}

.spec-card:nth-child(6) .sc-tag {
	background: rgba(34, 160, 168, 0.1);
	color: var(--teal-lt);
}

.spec-card:nth-child(7) .sc-top {
	background: linear-gradient(135deg, #eaf5ee, #c5e5cf);
}

.spec-card:nth-child(7) .sc-cat {
	color: var(--sage);
}

.spec-card:nth-child(7) .sc-tag {
	background: rgba(58, 125, 88, 0.1);
	color: var(--sage);
}

.spec-card:nth-child(8) .sc-top {
	background: linear-gradient(135deg, #f4f2fb, #ddd8f0);
}

.spec-card:nth-child(8) .sc-cat {
	color: var(--lavender);
}

.spec-card:nth-child(8) .sc-tag {
	background: rgba(123, 111, 168, 0.1);
	color: var(--lavender);
}

.spec-card:nth-child(9) .sc-top {
	background: linear-gradient(135deg, #fff9ee, #f0e4c0);
}

.spec-card:nth-child(9) .sc-cat {
	color: var(--amber);
}

.spec-card:nth-child(9) .sc-tag {
	background: rgba(200, 120, 32, 0.1);
	color: var(--amber);
}

/* ── DEEP DIVE ── */
.deep {
	background: var(--white);
	padding: var(--vertical-padding) 0;
}

.dd-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 44px;
}

.dd-tab {
	background: var(--sand);
	border: none;
	cursor: pointer;
	padding: 10px 22px;
	border-radius: 100px;
	font-size: 14px;
	font-weight: 600;
	color: var(--body);
	transition:
		background 0.2s,
		color 0.2s,
		transform 0.15s;
}

.dd-tab:hover {
	background: var(--sky);
	color: var(--teal);
}

.dd-tab.active {
	background: var(--teal);
	color: var(--white);
	box-shadow: 0 4px 16px rgba(26, 122, 128, 0.3);
}

.dd-panel {
	display: none;
}

.dd-panel.active {
	display: block;
	animation: fadeIn 0.35s var(--e);
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ── OPTIC NERVE SECTION ── */
.optic-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(451px, 1fr));
	gap: 25px;
}

.optic-card {
	background: var(--cream);
	border-radius: 14px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border-top: 3px solid var(--teal);
}

.optic-card:nth-child(2) {
	border-top-color: var(--sage);
}

.optic-card:nth-child(3) {
	border-top-color: var(--lavender);
}

.optic-card:nth-child(4) {
	border-top-color: var(--amber);
}

.optic-card h4 {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	color: var(--navy);
	margin-bottom: 10px;
}

.optic-card p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--body);
	line-height: 1.72;
	margin-bottom: 10px;
}

.oc-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 12px;
	font-weight: 700;
	color: var(--teal);
	border: 1px solid rgba(26, 122, 128, 0.25);
	border-radius: 100px;
	padding: 4px 14px;
}

/* ── EYE MOVEMENT DISORDERS TABLE ── */
.em-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(454px, 1fr));
	gap: 20px;
}

.em-card {
	background: var(--cream);
	border-radius: 14px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border-left: 3px solid var(--teal);
}

.em-card:nth-child(even) {
	border-left-color: var(--lavender);
}

.em-card h4 {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 6px;
}

.em-card p {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--body);
	line-height: 1.68;
}

.em-diseases {
	margin-top: 8px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
}

.em-tag {
	font-size: 12px;
	padding: 2px 9px;
	border-radius: 100px;
	background: rgba(26, 122, 128, 0.08);
	color: var(--teal);
	font-weight: 600;
}

#movement {
	background:var(--sky);
	padding: var(--vertical-padding) 0;
}
/* ── RARE DISEASE BAND ── */
.rare {
	background: var(--navy);
	padding: var(--vertical-padding) 0;
}

.rare .eyebrow {
	color: var(--teal-lt);
}

.rare .sh {
	color: var(--white);
}

.rare .sintro {
	color: rgba(255, 255, 255, 0.65);
}

.rare-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(339px, 1fr));
	gap: 15px;
}

.rare-card {
	background: rgba(255, 255, 255, 0.06);
	border-radius: 14px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: background 0.2s;
}

.rare-card:hover {
	background: rgba(255, 255, 255, 0.1);
}

.rare-icon {
	font-size: 26px;
	margin-bottom: 10px;
}

.rare-name {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 700;
	color: var(--white);
	margin-bottom: 6px;
}

.rare-body {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.65;
}

.rare-marker {
	font-size: 11px;
	color: var(--teal-lt);
	margin-top: 8px;
}

/* ── HOW IT WORKS ── */
.how {
	background: var(--sky);
	padding: var(--vertical-padding) 0;
}

.how-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(30px, calc(24.234px + 1.802vw), 50px);
	align-items: center;
}

.how-points {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.hp {
	display: flex;
	gap: 18px;
	align-items: flex-start;
}

.hp-icon {
	width: clamp(34px, calc(31.117px + 0.901vw), 44px);
	height: clamp(34px, calc(31.117px + 0.901vw), 44px);
	border-radius: clamp(7px, calc(6.423px + 0.18vw), 9px);
	flex-shrink: 0;
	background: var(--teal);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(16px, calc(15.135px + 0.27vw), 19px);
	box-shadow: 0 4px 14px rgba(26, 122, 128, 0.25);
}

.hp-title {
	font-size: clamp(16px, calc(15.423px + 0.18vw), 18px);
	font-weight: 800;
	color: var(--navy);
	margin-bottom: 5px;
}

.hp-body {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--muted);
	line-height: 1.72;
}

.hp-body strong {
	color: var(--teal);
	font-weight: 600;
}

.bm-wrap {
	background: var(--white);
	border-radius: 20px;
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
	box-shadow: 0 6px 28px rgba(0, 0, 0, 0.08);
}

.bm-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.bm {
	background: var(--cream);
	border-radius: 10px;
	padding: 10px;
	border-left: 3px solid var(--teal);
	box-shadow: 0 0px 7px rgba(13, 33, 55, 0.13);
}

.bm:nth-child(even) {
	border-left-color: var(--sage);
}

.bm-name {
	font-size: 14px;
	font-weight: 700;
	color: var(--navy);
	margin-bottom: 2px;
}

.bm-desc {
	font-size: 13px;
	color: var(--muted);
}

/* ── RED FLAGS ── */
.red-flags {
	margin-top: 20px;
	background: linear-gradient(135deg, #fff0ee, #ffe4df);
	border-radius: 16px;
	border-left: 3px solid var(--coral);
	padding: clamp(15px, calc(12.117px + 0.901vw), 25px);
}

.rf-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.rf-icon {
	font-size: clamp(24px, calc(22.847px + 0.36vw), 28px);
}

.rf-head h3 {
	font-size: clamp(16px, calc(14.27px + 0.541vw), 22px);
	color: var(--coral);
}

.red-flags-title {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color:var(--body);
	line-height:1.7
}

.rf-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(262px, 1fr));
	gap: 10px;
	margin-top: clamp(20px, calc(14.234px + 1.802vw), 40px);
}

.rf-item {
	background: rgba(212, 96, 74, 0.09);
	border-radius: 8px;
	padding: 10px;
	font-size: 14px;
	color: var(--coral);
	font-weight: 600;
}

/* ── FAQ ── */
.faq {
	background: var(--cream);
	padding: var(--vertical-padding) 0;
}

.faq-a p strong {
	color: var(--navy);
}

/* ── CONTACT ── */
.contact {
	background: var(--navy);
	padding: var(--vertical-padding) 0;
}

.contact-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: flex-start;
	gap: 50px;
}

.contact .sh {
	color: var(--white);
}

.contact .sintro {
	color: rgba(255, 255, 255, 0.6);
}

.cf-submit {
	background: var(--teal);
	color: var(--white);
	font-weight: 800;
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	padding: clamp(10px, calc(8.559px + 0.45vw), 15px);
	border-radius: 100px;
	border: none;
	cursor: pointer;
	width: 100%;
	box-shadow: 0 6px 24px rgba(26, 122, 128, 0.4);
	transition: 0.2s ease;
}

.cf-submit:hover {
	background: var(--teal-lt);
	transform: translateY(-1px);
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 26px;
}

.ci-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.ci-icon {
	font-size: clamp(20px, calc(18.847px + 0.36vw), 24px);
}

.ci-title {
	font-size: 14px;
	font-weight: 700;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 4px;
}

.ci-val {
	font-size: clamp(14px, calc(13.423px + 0.18vw), 16px);
	color: var(--white);
	font-weight: 600;
	line-height: 1.5;
}

.ci-val a {
	color: var(--teal-lt);
}

@media (max-width: 900px) {
	.hero-content {
    grid-template-columns: 1fr;
	}
	.reassure-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
	}
	.stats-inner {
		grid-template-columns: 1fr 1fr;
	}

	.stat {
		border-right: 1px solid rgba(255, 255, 255, 0.15);
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
		padding: 0 20px;
	}
	
	.stat:first-of-type {
		padding-left: 0;
		padding-bottom: 20px;
	}
	
	.stat:nth-of-type(2) {
		border-right: none;
		padding-right: 0;
		padding-bottom: 20px;
	}
	.stat:nth-of-type(3) {
		border-bottom: none;
		padding-top: 20px;
		padding-left: 0;
	}
	.stat:last-of-type {
		padding-top: 20px;
		padding-right: 0;
		padding-bottom: 0;
		border-right: none;
		border-bottom: none;
	}

	.two,
	.how-grid,
	.contact-inner {
		grid-template-columns: 1fr;
	}

	.em-grid {
		grid-template-columns: 1fr;
	}
}

@media(max-width: 720px) {
	.reassure-cards {
    grid-template-columns: 1fr;
	}
}

@media(max-width: 480px) {
	.optic-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	}
}

@media(max-width: 470px) {
	.stats-inner {
		grid-template-columns: 1fr;
	}
	.stat {
		border-right: none;
		padding-right: 0;
		padding-left: 0;
	}
	.stat:nth-of-type(2) {
		padding-top: 20px;
	}
	.stat:nth-of-type(3) {
		padding-bottom: 20px;
		border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	}
}

@media(max-width: 370px) {
	.spec-grid,
	.rare-grid,
	.optic-grid {
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
	}
	.bm-grid {
    grid-template-columns: 1fr;
	}
}

@media(max-width: 325px) {
	.oc-link {
    padding: 7px 24px;
	}
}
