/* ============================================================
       DESIGN TOKENS
    ============================================================ */
:root {
	--bg: #000d19;
	--surface: #001527;
	--text: #ffffff;
	--muted: rgba(255, 255, 255, .8);
	--border: rgba(255, 255, 255, .2);
	--gold: #f2d523;
	--cyan: #90ffff;
	--blue: #005eab;
	--teal: #60c5c5;
	--container: 1280px;
	--gutter: 64px;
	--section: 112px;
	--section-md: 80px;
	--radius: 8px;
	--pill: 30px
}

* {
	box-sizing: border-box
}

html,
body {
	margin: 0;
	padding: 0;
	background: var(--bg);
	color: var(--text);
	font-family: 'Roboto', sans-serif
}

.shell{
    padding-inline:var(--gutter)
}

body {
	overflow-x: hidden
}

img {
	display: block;
	max-width: 100%
}

a {
	text-decoration: none;
	color: inherit
}

button {
	font: inherit
}

.container {
	width: min(100%, var(--container));
	margin-inline: auto
}

.section {
	padding-block: var(--section)
}

.section-md {
	padding-block: var(--section-md)
}

.section-top {
	padding-top: 72px;
	padding-bottom: 72px
}

.section-tight {
	padding-top: 40px;
	padding-bottom: 112px
}

.section-end {
	padding-top: 44px;
	padding-bottom: 44px
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 24px;
	border-radius: var(--pill);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
	position: relative;
	overflow: hidden;
	isolation: isolate;
	transition: color .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease
}

.btn-sm {
	padding: 8px 20px
}

.btn-primary {
	background: linear-gradient(90deg, var(--blue), var(--teal));
	color: #000d19;
	border: 0
}

.btn-primary::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #8AF8FB;
	transform: translateY(101%);
	transition: transform .25s cubic-bezier(.4, 0, .2, 1);
	z-index: -1;
	border-radius: var(--pill)
}

.btn-primary:hover::before,
.btn-primary:focus-visible::before {
	transform: translateY(0)
}

.btn-primary:hover,
.btn-primary:focus-visible {
	box-shadow: none;
	transform: none
}

.btn-outline {
	background: rgba(255, 255, 255, .2);
	border: 2px solid var(--gold);
	color: #fff
}

.btn-outline::before {
	content: "";
	position: absolute;
	inset: 0;
	background: var(--gold);
	transform: translateY(101%);
	transition: transform .25s cubic-bezier(.4, 0, .2, 1);
	z-index: -1;
	border-radius: var(--pill)
}

.btn-outline:hover::before,
.btn-outline:focus-visible::before {
	transform: translateY(0)
}

.btn-outline:hover,
.btn-outline:focus-visible {
	color: #000d19
}

.btn-light {
	background: #fff;
	color: #000d19;
	border: 0
}

.btn-light:hover,
.btn-light:focus-visible {
	background: transparent;
	color: #fff;
	box-shadow: inset 0 0 0 2px #fff
}

.btn-dark-outline {
	background: rgba(255, 255, 255, .18);
	border: 2px solid #000d19;
	color: #000d19
}

.btn-dark-outline::before {
	content: "";
	position: absolute;
	inset: 0;
	background: #000d19;
	transform: translateY(101%);
	transition: transform .25s cubic-bezier(.4, 0, .2, 1);
	z-index: -1;
	border-radius: var(--pill)
}

.btn-dark-outline:hover::before,
.btn-dark-outline:focus-visible::before {
	transform: translateY(0)
}

.btn-dark-outline:hover,
.btn-dark-outline:focus-visible {
	color: #fff
}

.eyebrow {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.5
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	line-height: 1;
	letter-spacing: -.02em
}

h1 {
	font-size: 72px
}

h2 {
	font-size: 52px
}

h4 {
	font-size: 36px
}

p {
	margin: 0;
	font-size: 16px;
	line-height: 1.5
}

.lead {
	font-size: 18px
}

.section-head {
	display: grid;
	gap: 16px;
	max-width: 768px
}

.section-head.center {
	text-align: center;
	justify-items: center;
	margin-inline: auto
}

.line-divider {
	height: 1px;
	background: var(--border)
}

.hero {
	padding: 24px 0 40px 0 !important;
}

.hero-card {
	min-height: 460px;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	padding: 64px
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url("/wp-content/uploads/2026/03/converted-1774614008.webp") center/cover no-repeat
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 768px;
	display: grid;
	gap: 32px
}

.hero-copy {
	display: grid;
	gap: 16px
}

.hero-stack {
	display: grid;
	gap: 24px
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px
}

.service-card {
	min-height: 320px;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
	padding: 24px;
	display: flex;
	flex-direction: column;
	border: 1px solid var(--yellow);
	justify-content: center;
	gap: 24px;
	transition: border-color .25s ease, box-shadow .25s ease;
}

.service-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .6);
	z-index: 1
}

.service-card>* {
	position: relative;
	z-index: 2
}

.service-card:hover:not(.gradient),
.service-card:focus-within:not(.gradient) {
	border-color: var(--cyan);
	box-shadow: 6px 6px 11px -2px rgba(144, 255, 255, .7)
}

.service-card.gradient {
	background: linear-gradient(42deg, var(--blue), var(--cyan));
	border-color: transparent;
	color: #000d19
}

.service-card.gradient::before {
	display: none
}

.service-card img.bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0
}

.service-top {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.service-copy {
	display: grid;
	gap: 16px
}

.service-copy p {
	line-height: 1.3
}

.service-icon {
	width: 52px;
	height: 62px;
	object-fit: contain;
	flex: 0 0 auto
}

.service-icon.small {
	width: 45px;
	height: 45px
}

.service-card h3 {
	font-family: 'Roboto Condensed', sans-serif;
	font-size: 22px;
	line-height: 1;
	letter-spacing: -.01em;
	text-transform: uppercase;
	color: var(--gold);
	transition: color .25s ease
}

.service-card:hover:not(.gradient) h3,
.service-card:focus-within:not(.gradient) h3 {
	color: var(--cyan)
}

.service-card.gradient h3,
.service-card.gradient p {
	color: #000d19
}

.service-link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #fff;
	font-size: 16px;
	font-weight: 500
}

.service-link svg {
	width: 24px;
	height: 24px;
	flex: 0 0 auto
}

.service-card.empty {
	border: none;
	background: none;
	min-height: 320px
}

.why-wrap {
	display: grid;
	gap: 80px
}

.why-grid {
	display: grid;
	grid-template-columns: 0.60fr 1.35fr;
	gap: 32px;
}

.why-card,
.why-mini,
.testimonial {
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden
}

.why-card-copy,
.why-wide-copy,
.why-mini-copy,
.testimonial {
	padding: 32px
}

.why-card-copy,
.why-wide-copy,
.why-mini-copy {
	display: grid;
	gap: 24px
}

.why-card-copy-top,
.why-wide-copy-top,
.why-mini-top {
	display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.why-card img,
.why-wide img {
	width: 100%;
	object-fit: cover
}

.why-card img {
	height: 208px;
}

.why-right {
	display: grid;
	gap: 32px
}

.why-wide {
	display: grid;
	grid-template-columns: 1fr 432px;
	background: var(--surface);
	border: 1px solid var(--border);
	border-radius: 8px;
	overflow: hidden
}

.why-wide img {
	height: 100%
}

.why-mini-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px
}

.why-icon {
	width: 48px;
	height: 48px;
	object-fit: contain
}

.cta-band {
	background: linear-gradient(90deg, var(--blue), var(--teal))
}

.cta-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start
}

.testimonial-head {
	display: grid;
	gap: 24px;
	max-width: 560px;
	text-align: center;
	justify-items: center;
	margin-inline: auto
}

.testimonial-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px
}

.stars {
	display: block;
	line-height: 0
}

.stars svg {
	width: 116px;
	height: 20px
}

.avatar {
	display: flex;
	align-items: center;
	gap: 16px
}

.avatar img {
	width: 48px;
	height: 48px;
	border-radius: 999px
}

.faq-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 64px
}

.faq-list {
	border-bottom: 1px solid var(--border)
}

.faq-item {
	border-top: 1px solid var(--border)
}

.faq-question {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
	padding: 20px 0;
	background: none;
	border: 0;
	color: inherit;
	text-align: left;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	cursor: pointer
}

.faq-question svg {
	width: 20px;
	height: 20px;
	flex: 0 0 auto;
	transition: transform .25s ease
}

.faq-item.is-open .faq-question svg {
	transform: rotate(180deg)
}

.faq-answer {
	padding: 0 0 24px;
	color: var(--muted)
}

.faq-answer[hidden] {
	display: none
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px
}

.contact-links {
	display: grid;
	gap: 16px;
	padding-block: 8px
}

.contact-row {
	display: flex;
	gap: 16px;
	align-items: flex-start
}

.contact-row img {
	width: 24px;
	height: 24px;
	flex: 0 0 auto
}

.contact-row a {
	text-decoration: underline
}

.form {
	display: grid;
	gap: 24px
}

.field {
	display: grid;
	gap: 8px
}

input,
textarea {
	width: 100%;
	background: rgba(255, 255, 255, .2);
	border: 1px solid #fff;
	border-radius: 6px;
	padding: 12px;
	color: #fff;
	font: 400 16px/1.5 'Roboto', sans-serif
}

input {
	height: 48px
}

textarea {
	min-height: 180px;
	resize: vertical
}

::placeholder {
	color: rgba(255, 255, 255, .5)
}

.checkbox {
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 16px;
	font-size: 14px
}

.checkbox input {
	width: 18px;
	height: 18px;
	margin: 0;
	-webkit-appearance: none;
	appearance: none;
	border-radius: 2px;
	padding: 0;
}

.checkbox input:checked {
	background-color: #ffffff;
	position: relative;
}

/* Tick mark */
.checkbox input:checked::after {
	content: '';
	position: absolute;
	top: 45%;
	left: 50%;
	width: 4px;
	height: 8px;
	border: solid #000;
	border-width: 0 2px 2px 0;
	transform: translate(-50%, -50%) rotate(45deg);
}


@media (prefers-reduced-motion: reduce) {

	.btn,
	.btn::before,
	.service-card,
	.service-card h3,
	.faq-question svg {
		transition: none !important
	}
}

@media (max-width:1200px) {
	:root {
		--gutter: 40px;
		--section: 88px;
		--section-md: 64px
	}

	h1 {
		font-size: 58px
	}

	h2 {
		font-size: 44px
	}

	h4 {
		font-size: 32px
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.why-grid,
	.why-wide,
	.cta-grid,
	.contact-grid,
	.faq-grid {
		grid-template-columns: 1fr
	}

	.testimonial-grid {
		grid-template-columns: 1fr
	}

	.why-mini-grid {
		grid-template-columns: 1fr 1fr
	}

	.service-card.empty {
		display: none
	}
}

@media (max-width:780px) {
	:root {
		--gutter: 20px;
		--section: 64px;
		--section-md: 56px
	}

	h1 {
		font-size: 40px
	}

	h2 {
		font-size: 34px
	}

	h4 {
		font-size: 28px
	}

	.hero-card {
		min-height: 400px;
		padding: 32px 24px
	}

	.services-grid,
	.why-mini-grid {
		grid-template-columns: 1fr
	}

	.why-card-copy,
	.why-wide-copy,
	.why-mini-copy,
	.testimonial,
	.service-card {
		padding: 24px
	}

	.why-card img,
	.why-wide img {
		height: 280px
	}
}

.divider-wave {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	display: block;
	height: 60px;
	object-fit: cover;
}

.divider-line {
	width: 100%;
	max-width: var(--container);
	margin: 0 auto;
	display: block;
}

.testimonials .section-head {
	margin-bottom: 56px;
	max-width: 560px
}

.testimonials {
	padding-top: 112px;
	padding-bottom: 112px;
}

.testimonials-carousel-wrap {
	position: relative;
	overflow: hidden
}

.testimonials-track {
	display: flex;
	gap: 32px;
	transition: transform .4s cubic-bezier(.4, 0, .2, 1)
}

.testimonial {
	flex: 0 0 calc((100% - 64px) / 3);
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px
}

.stars {
	width: 116px;
	height: 20px;
	display: block
}

.stars svg {
	width: 100%;
	height: 100%;
	display: block
}

.author {
	display: flex;
	align-items: center;
	gap: 16px
}

.author img {
	width: 48px;
	height: 48px
}

.author-copy {
	display: flex;
	flex-direction: column
}

.author-copy strong,
.author-copy span {
	font-size: 16px;
	line-height: 1.5
}

.carousel-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 40px
}

.carousel-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--line);
	background: transparent;
	color: var(--white);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: border-color .2s, background .2s
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
	border-color: var(--cyan);
	background: rgba(144, 255, 255, .08)
}

.carousel-dots {
	display: flex;
	gap: 8px
}

.carousel-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--line);
	cursor: pointer;
	transition: background .2s, transform .2s;
	border: none;
	padding: 0
}

.carousel-dot.active {
	background: var(--cyan);
	transform: scale(1.3)
}

.stars svg path {
    fill: #F2D523;
    stroke-width: 0;
}

@media (prefers-reduced-motion: reduce) {

	.btn,
	.btn::before,
	.service-card,
	.service-card h3,
	.faq-question svg {
		transition: none !important
	}
}

@media(max-width: 1280px) {
    .divider-wave {
        object-fit: contain;
        padding: 0 20px;
    }
    .divider-line {
        padding: 0 20px;   
    }
}

@media (max-width:1200px) {
	:root {
		--gutter: 40px;
		--section: 88px;
		--section-md: 64px
	}

	h1 {
		font-size: 58px
	}

	h2 {
		font-size: 44px
	}

	h4 {
		font-size: 32px
	}

	.services-grid {
		grid-template-columns: repeat(2, 1fr)
	}

	.why-grid,
	.why-wide,
	.cta-grid,
	.contact-grid,
	.faq-grid {
		grid-template-columns: 1fr
	}

	.testimonial-grid {
		grid-template-columns: 1fr
	}

	.why-mini-grid {
		grid-template-columns: 1fr 1fr
	}

	.service-card.empty {
		display: none
	}

	.testimonial {
		flex: 0 0 100%
	}
}

@media (max-width:780px) {
	:root {
		--gutter: 20px;
		--section: 64px;
		--section-md: 56px
	}

	h1 {
		font-size: 40px
	}

	h2 {
		font-size: 34px
	}

	h4 {
		font-size: 28px
	}

	.hero-card {
		min-height: 400px;
		padding: 32px 24px
	}

	.services-grid,
	.why-mini-grid {
		grid-template-columns: 1fr
	}

	.why-card-copy,
	.why-wide-copy,
	.why-mini-copy,
	.testimonial,
	.service-card {
		padding: 24px
	}

	.why-card img,
	.why-wide img {
		height: 280px
	}
}