:root {
	--navy: #183456;
	--navy-2: #24547f;
	--teal: #00b4b4;
	--aqua: #dff8f8;
	--paper: #f6fafc;
	--ink: #132538;
	--muted: #597084;
	--line: #dce8ef;
	--white: #fff;
	--shadow: 0 28px 70px rgba(24, 52, 86, .14);
	--radius: 24px;
	--max: 1180px
}

* {
	box-sizing: border-box
}

html {
	scroll-behavior: smooth
}

body {
	margin: 0;
	font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	color: var(--ink);
	background: #fff;
	line-height: 1.65;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility
}

img,
video {
	max-width: 100%;
	height: auto;
	display: block
}

a {
	color: inherit
}

.skip-link {
	position: absolute;
	left: -999px;
	top: 10px;
	background: var(--navy);
	color: #fff;
	padding: 10px 14px;
	border-radius: 12px;
	z-index: 999
}

.skip-link:focus {
	left: 10px
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(255, 255, 255, .9);
	backdrop-filter: saturate(160%) blur(16px);
	border-bottom: 1px solid rgba(220, 232, 239, .82)
}

.nav {
	max-width: var(--max);
	margin: auto;
	padding: 14px 22px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px
}

.brand {
	display: inline-flex;
	flex-grow: 100;
	align-items: center;
	text-decoration: none
}

.brand img {
	height: 48px;
	margin-right: 8px;
	width: auto
}

.nav-links {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none
}

.nav-links a {
	display: inline-flex;
	text-decoration: none;
	padding: 10px 14px;
	border-radius: 999px;
	color: var(--muted);
	font-weight: 760;
	font-size: .92rem
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
	color: var(--navy);
	background: #eef7f8
}

.nav-actions {
	display: flex;
	gap: 12px;
	align-items: center
}

.dropdown {
	display: inline-block;
	position: relative;
}

.dropdown-content {
	background-color: #ffffff;
	border: 1px solid var(--line);
	border-radius: 22px;
	box-shadow: var(--shadow);
	display: none;
	margin-top: 12px;
	position: absolute;
	z-index: 1;
}

.dropdown-content a {
	border-radius: 999px;
	color: black;
	display: block;
	padding: 10px;
	padding-left: 20px;
	padding-right: 50px;
	text-decoration: none;
}

.dropdown-content a:hover {
	background: #eef7f8;
}

.menu-btn {
	display: none;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 14px;
	padding: 10px 12px;
	font-weight: 850;
	color: var(--navy);
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-height: 46px;
	padding: 12px 19px;
	border-radius: 999px;
	text-decoration: none;
	border: 1px solid transparent;
	font-weight: 850;
	cursor: pointer;
	transition: transform .2s ease, box-shadow .2s ease, background .2s ease
}

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

.btn-primary {
	background: var(--teal);
	color: #fff;
	box-shadow: 0 12px 24px rgba(0, 180, 180, .22)
}

.btn-primary:hover {
	background: #009c9c
}

.btn-secondary {
	background: #fff;
	color: var(--navy);
	border-color: var(--line)
}

.btn-dark {
	background: var(--navy);
	color: #fff
}

.btn-ghost {
	background: rgba(255, 255, 255, .12);
	color: #fff;
	border-color: rgba(255, 255, 255, .24)
}

main {
	overflow: hidden
}

.hero {
	position: relative;
	background: radial-gradient(circle at 82% 16%, rgba(0, 180, 180, .28), transparent 28%), linear-gradient(135deg, #122a47 0%, #1d4d78 58%, #102640 100%);
	color: #fff
}

.hero:after {
	content: "";
	position: absolute;
	inset: auto 0 0;
	height: 105px;
	background: linear-gradient(to top, #fff, transparent)
}

.hero-grid {
	position: relative;
	z-index: 1;
	max-width: var(--max);
	margin: auto;
	min-height: 760px;
	padding: 94px 22px 132px;
	display: grid;
	grid-template-columns: 1.02fr .98fr;
	align-items: center;
	gap: 48px
}

.eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--teal);
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .78rem;
	font-weight: 920;
	margin-bottom: 18px
}

.eyebrow:before {
	content: "";
	width: 34px;
	height: 2px;
	background: currentColor;
	border-radius: 2px
}

.hero h1,
.page-hero h1,
.section-title {
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 520;
	letter-spacing: -.036em;
	line-height: 1.04
}

.hero h1 {
	font-size: clamp(2.85rem, 6vw, 5.5rem);
	margin: 0 0 22px
}

.accent {
	color: #76e6e6;
	font-style: italic
}

.hero p {
	font-size: 1.17rem;
	color: rgba(255, 255, 255, .76);
	max-width: 650px;
	margin: 0 0 34px
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap
}

.media-frame {
	position: relative;
	overflow: hidden;
	border-radius: 34px;
	box-shadow: var(--shadow);
	background: #eaf2f6;
}

.media-frame img,
.media-frame video {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.media-frame .video-layer {
	position: absolute;
	inset: auto 24px 24px auto;
	width: 42%;
	height: 32%;
	border-radius: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, .42);
	box-shadow: 0 18px 48px rgba(0, 0, 0, .18)
}

.media-frame:before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(16, 38, 64, 0) 45%, rgba(16, 38, 64, .38));
	z-index: 1;
	pointer-events: none
}

.media-frame>* {
	position: relative
}

.video-layer {
	z-index: 2
}

.caption-card {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 2;
	background: rgba(255, 255, 255, .92);
	color: var(--navy);
	border: 1px solid #fff;
	border-radius: 22px;
	padding: 16px 18px;
	max-width: 300px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, .14)
}

.caption-card strong {
	display: block;
	font-family: Georgia, serif;
	font-size: 1.35rem
}

.caption-card span {
	display: block;
	color: var(--muted);
	font-weight: 780;
	font-size: .88rem
}

.stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin-top: -42px;
	position: relative;
	z-index: 3
}

.stat {
	background: rgba(255, 255, 255, .94);
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 18px;
	box-shadow: var(--shadow);
	color: var(--navy)
}

.stat strong {
	display: block;
	color: var(--teal);
	font-size: 2rem;
	line-height: 1;
	font-family: Georgia, serif
}

.stat span {
	font-size: .84rem;
	color: var(--muted);
	font-weight: 760
}

.strip {
	background: var(--teal);
	color: #fff;
	text-align: center;
	font-weight: 900;
	padding: 14px 20px
}

.section {
	max-width: var(--max);
	margin: auto;
	padding: 94px 22px
}

.section-head {
	max-width: 780px;
	margin-bottom: 40px
}

.section-title {
	color: var(--navy);
	font-size: clamp(2rem, 3.4vw, 3.78rem);
	margin: 0 0 18px
}

.lead {
	font-size: 1.12rem;
	color: var(--muted);
	margin: 0
}

.grid {
	display: grid;
	gap: 22px
}

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

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

.card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 28px;
	box-shadow: 0 10px 34px rgba(24, 52, 86, .07)
}

.card h3,
.card h2 {
	margin: 0 0 10px;
	color: var(--navy)
}

.card p {
	margin: 0;
	color: var(--muted)
}

.icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: var(--aqua);
	font-size: 1.5rem;
	margin-bottom: 18px
}

.band {
	background: var(--paper)
}

.dark {
	background: var(--navy);
	color: #fff
}

.dark .section-title,
.dark h2,
.dark h3 {
	color: #fff
}

.dark .lead,
.dark p {
	color: rgba(255, 255, 255, .72)
}

.feature {
	background: rgba(255, 255, 255, .07);
	border-color: rgba(255, 255, 255, .13);
	box-shadow: none
}

.feature .icon {
	background: rgba(0, 180, 180, .16)
}

.image-card {
	overflow: hidden;
	padding: 0
}

.image-card img,
.image-card video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 360px
}

.split {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 52px;
	align-items: center
}

.ticks {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	display: grid;
	gap: 12px
}

.ticks li {
	position: relative;
	padding-left: 34px;
	color: var(--muted)
}

.ticks li:before {
	content: "✓";
	position: absolute;
	left: 0;
	top: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: var(--aqua);
	color: var(--teal);
	font-weight: 900;
	font-size: .83rem
}

.dark .ticks li {
	color: rgba(255, 255, 255, .78)
}

.dark .ticks li:before {
	background: rgba(0, 180, 180, .16)
}

.page-hero {
	background: linear-gradient(135deg, #f4fbfb, #fff);
	border-bottom: 1px solid var(--line)
}

.page-hero-inner {
	max-width: var(--max);
	margin: auto;
	padding: 72px 22px 64px;
	display: grid;
	grid-template-columns: 1.05fr .95fr;
	gap: 46px;
	align-items: center
}

.page-hero h1 {
	font-size: clamp(2.4rem, 5vw, 5rem);
	margin: 0 0 20px;
	color: var(--navy)
}

.page-hero p {
	font-size: 1.12rem;
	color: var(--muted);
	margin: 0
}

.crumbs {
	font-size: .86rem;
	color: #7e94a5;
	font-weight: 820;
	margin-bottom: 18px
}

.crumbs a {
	text-decoration: none;
	color: var(--navy)
}

.pill-list {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 26px
}

.pill {
	padding: 8px 12px;
	border-radius: 999px;
	background: #eef7f8;
	color: var(--navy);
	font-weight: 820;
	font-size: .86rem
}

.segment-card {
	display: flex;
	flex-direction: column;
	gap: 18px
}

.segment-tag {
	display: inline-flex;
	width: max-content;
	background: var(--navy);
	color: #fff;
	border-radius: 999px;
	padding: 7px 12px;
	font-size: .75rem;
	font-weight: 920;
	letter-spacing: .08em;
	text-transform: uppercase
}

.quote {
	border-left: 4px solid var(--teal);
	background: #f2fbfb;
	border-radius: 0 16px 16px 0;
	padding: 18px;
	color: var(--navy);
	font-family: Georgia, serif;
	font-style: italic
}

.steps {
	counter-reset: step;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px
}

.step {
	position: relative;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 22px;
	padding: 28px
}

.step:before {
	counter-increment: step;
	content: counter(step);
	width: 46px;
	height: 46px;
	border-radius: 16px;
	display: grid;
	place-items: center;
	background: var(--navy);
	color: #fff;
	font-size: 1.4rem;
	font-weight: 900;
	margin-bottom: 18px
}

.faq button {
	width: 100%;
	border: 0;
	background: transparent;
	text-align: left;
	font: inherit;
	font-weight: 900;
	color: var(--navy);
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	cursor: pointer
}

.faq .answer {
	display: none;
	color: var(--muted);
	padding: 0 0 20px
}

.faq-item {
	border-bottom: 1px solid var(--line)
}

.faq-item.open .answer {
	display: block
}

.contact-grid {
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 46px;
	align-items: start
}

.contact-card {
	background: var(--navy);
	color: #fff;
	border-radius: 28px;
	padding: 34px;
	box-shadow: var(--shadow)
}

.contact-card p,
.contact-card a {
	color: rgba(255, 255, 255, .8)
}

.contact-card a {
	text-decoration: none
}

.form {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 28px;
	padding: 32px;
	box-shadow: var(--shadow)
}

.field {
	display: grid;
	gap: 8px;
	margin-bottom: 16px
}

.field label {
	font-weight: 900;
	color: var(--navy);
	font-size: .92rem
}

.field input,
.field select,
.field textarea {
	width: 100%;
	border: 1px solid var(--line);
	border-radius: 15px;
	padding: 13px 14px;
	font: inherit;
	background: #fff;
	color: var(--ink)
}

.field textarea {
	min-height: 130px;
	resize: vertical
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.btn:focus-visible,
.nav a:focus-visible,
.menu-btn:focus-visible {
	outline: 3px solid rgba(0, 180, 180, .34);
	outline-offset: 3px
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px
}

.form-note {
	color: var(--muted);
	font-size: .88rem;
	margin-top: 12px
}

.site-footer {
	background: #102640;
	color: #fff
}

.footer-inner {
	max-width: var(--max);
	margin: auto;
	padding: 54px 22px;
	display: flex;
	grid-template-columns: 1fr auto;
	gap: 32px;
	align-items: center
}

.footer-inner .brand-footer img {
	height: 48px;
	width: auto;
	filter: none
}

.footer-copy {
	color: rgba(255, 255, 255, .52);
	font-size: .9rem;
	margin: 12px 0 0
}

.footer-privacy {
	padding-top: 10px;
	padding-bottom: 10px;
}

.footer-privacy a {
	color: rgba(255, 255, 255);
	text-decoration: none;
}

.footer-links {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	justify-content: end;
}

.footer-links a {
	color: rgba(255, 255, 255);
	text-decoration: none;
	font-weight: 760
}

.footer-social {
	display: flex;
	gap: 0px;
	flex-wrap: wrap;
	list-style: none;
	margin-left: 0;
	padding: 0;
	justify-content: end;
}

.footer-social .social {
	filter: invert(100%);
	-webkit-filter: invert(100%);
	padding: 6px;
}

.footer-social .social:hover {
	filter: invert(100%);
	-webkit-filter: invert(100%);
	background: #FF4B4B;
	border-radius: 4px;
	padding: 6px;
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .55s ease, transform .55s ease
}

.reveal.is-visible {
	opacity: 1;
	transform: none
}

.alert {
	max-width: var(--max);
	margin: auto;
	padding: 15px;
	margin-bottom: -40px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.alert-success {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d;
}

.alert-danger {
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
}

.cookie-banner {
	background-color: rgba(26,29,46,0.95);
	border: 1px solid #ffffff;
	border-radius: 12px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.4);
	color: #ffffff;
	display: none;
	bottom: 20px;
	left: 20px;
	right: 20px;
	max-width: var(--max);
	margin: auto;
	padding: 20px;
	position: fixed;
	z-index: 9999;
}

@media (prefers-reduced-motion:reduce) {
	html {
		scroll-behavior: auto
	}

	.reveal,
	.btn {
		transition: none
	}

	.btn:hover {
		transform: none
	}

	.media-frame video {
		display: none
	}
}

@media (max-width:960px) {
	.nav-links {
		position: fixed;
		inset: 77px 14px auto;
		background: #fff;
		border: 1px solid var(--line);
		border-radius: 22px;
		box-shadow: var(--shadow);
		padding: 12px;
		display: none;
		flex-direction: column;
		align-items: stretch;

		margin-left: auto;
		margin-right: 80px;
		max-width: 240px;
	}

	.nav-links.open {
		display: flex
	}

	.nav-links a {
		width: 100%
	}

	.dropdown-content {
		right: 0;
	}

	.menu-btn {
		display: inline-flex;
	}

	.nav-actions .btn {
		display: none
	}

	.hero-grid,
	.page-hero-inner,
	.split,
	.contact-grid {
		grid-template-columns: 1fr
	}

	.hero-grid {
		min-height: auto;
		padding-top: 72px
	}

	.stats {
		margin-top: 20px
	}

	.grid-3,
	.grid-2,
	.steps {
		grid-template-columns: 1fr
	}

	.footer-inner {
		display: block;
		grid-template-columns: 1fr
	}

	.form-row {
		grid-template-columns: 1fr
	}

	.media-frame .video-layer {
		width: 46%;
		height: 28%
	}
}

@media (max-width:560px) {
	.brand img {
		height: 42px
	}

	.hero h1 {
		font-size: 2.55rem
	}

	.hero p,
	.lead,
	.page-hero p {
		font-size: 1rem
	}

	.stats {
		grid-template-columns: 1fr
	}

	.section {
		padding: 64px 18px
	}

	figure {
		margin-left: 0px;
		margin-right: 0px;
	}

	.page-hero-inner {
		padding: 52px 18px
	}

	.card,
	.form,
	.contact-card {
		padding: 14px
	}

	.hero-grid {
		padding-left: 18px;
		padding-right: 18px
	}

	.footer-inner {
		display: block;
		padding: 44px 18px;
	}

	.media-frame {
		min-height: 330px
	}

	.caption-card {
		left: 14px;
		bottom: 14px;
		right: 14px
	}

	.media-frame .video-layer {
		display: none
	}
}