.hero {
	background: var(--bg);
	padding: 24px 0 40px 0 !important;
}

.hero-card {
	position: relative;
	overflow: hidden;
	min-height: 460px;
	display: flex;
	align-items: center;
	padding: 112px 64px
}

.hero-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: url('/wp-content/uploads/2026/03/409f13e3-f4cc-4434-9109-9422fc1f8e96.jpg') center/cover no-repeat
}

.hero-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .6)
}

.hero-copy {
	position: relative;
	z-index: 1;
	max-width: 768px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	align-items: flex-start
}

.hero-copy .copy {
	display: flex;
	flex-direction: column;
	gap: 24px
}

.split-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center
}

.photo-card {
	border-radius: 8px;
	overflow: hidden;
	min-height: 640px;
	background: #07192d;
	position: relative;
}

.photo-card img {
	height: 100%;
	object-fit: cover;
	width: auto;
	object-fit: cover;
	position: absolute;
	left: 0;
}

.values {
	padding-top: 0
}

.signal {
	width: 100%;
	height: 60px;
	background: url('/no-image.jpg') left center/contain no-repeat;
	margin-bottom: 80px
}

.values-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center
}

.values-list {
	display: flex;
	flex-direction: column;
	gap: 40px
}

.value-item {
	padding: 26px 0 26px 32px;
	border-left: 1px solid transparent;
	cursor: pointer;
}

.value-item.active {
	background: var(--panel);
	border-left-color: #fff;
	padding-right: 24px
}

.value-item h3 {
	margin-bottom: 16px
}

.values-image {
	border-radius: 8px;
	overflow: hidden;
	min-height: 600px
}

.values-image img {
	width: 100%;
	height: 100%;
	max-height: 600px;
	object-fit: cover
}

.section-head {
	max-width: 768px;
	margin: 0 auto 80px;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
	text-align: center
}

.standout-grid {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	gap: 32px
}

.card {
	background: var(--panel);
	border: 1px solid var(--line);
	border-radius: 8px;
	overflow: hidden
}

.card-body {
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 24px
}

.card-copy {
	display: flex;
	flex-direction: column;
	gap: 16px
}

.learn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.5
}

.learn svg {
	width: 24px;
	height: 24px;
	flex: none
}

.standout-large {
	grid-column: span 4;
	display: flex;
	flex-direction: column
}

.standout-large .card-media {
	min-height: 320px
}

.standout-large .card-media img,
.standout-side .card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

.standout-large .card-media img,
.standout-side .card-media img {
	max-height: 350px;
}

.standout-side {
	grid-column: span 8;
	display: grid;
	grid-template-rows: auto 1fr;
	gap: 32px
}

.standout-wide {
	display: grid;
	grid-template-columns: 1fr 432px;
	min-height: 400px
}

.standout-wide .card-media {
	min-height: 320px
}

.standout-small-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 32px
}

.icon-box {
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center
}

.icon-box svg {
	width: 48px;
	height: 48px;
	fill: none;
	stroke: #fff;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round
}

.testimonials .section-head {
	margin-bottom: 56px
}

.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)
}

.cta {
	background: var(--grad);
	color: #fff
}

.cta-wrap {
	display: grid;
	grid-template-columns: 1fr 607px;
	gap: 80px;
	align-items: center
}

.cta-copy {
	display: flex;
	flex-direction: column;
	gap: 32px
}

.cta-copy .copy {
	display: flex;
	flex-direction: column;
	gap: 24px
}

.cta-actions {
	display: flex;
	gap: 16px;
	flex-wrap: wrap
}

.cta-image {
	border-radius: 8px;
	overflow: hidden;
	min-height: 405px
}

.cta-image img {
	width: 100%;
	height: 100%;
	object-fit: cover
}

section#contact-cta {
    padding: 44px var(--pad);
}

@media (prefers-reduced-motion: reduce) {

	.btn-grad::before,
	.btn-outline::before,
	.testimonials-track,
	.carousel-btn,
	.carousel-dot {
		transition: none !important
	}
}

@media(max-width: 1280px) {
    .divider-wave {
        object-fit: contain;
        padding: 0 20px;
    }
}

@media (max-width: 1200px) {
	:root {
		--pad: 28px;
		--h1: 56px;
		--h2: 42px;
		--h3: 30px
	}

	.hero-card {
		padding: 88px 40px
	}

	.split-grid,
	.values-grid,
	.cta-wrap,
	.footer-top {
		grid-template-columns: 1fr
	}

	.cta-wrap {
		gap: 48px
	}

	.standout-grid {
		grid-template-columns: 1fr
	}

	.standout-large,
	.standout-side {
		grid-column: auto
	}

	.standout-wide {
		grid-template-columns: 1fr
	}

	.standout-wide .card-media {
		min-height: 280px
	}

	.testimonial {
		flex: 0 0 100%
	}

	.values-image {
		min-height: 460px
	}

	.cta-image {
		max-width: 640px
	}
}

@media (max-width: 780px) {
	:root {
		--pad: 18px;
		--h1: 40px;
		--h2: 32px;
		--h3: 26px;
		--body-m: 16px
	}

	.hero {
		padding-bottom: 80px
	}

	.hero-card {
		min-height: 420px;
		padding: 64px 24px
	}

	.section,
	.section-tight,
	footer {
		padding-left: 18px;
		padding-right: 18px
	}

	.section,
	.section-tight {
		padding-top: 40px;
		padding-bottom: 40px
	}

	.split-grid,
	.values-grid,
	.cta-wrap,
	.footer-top {
		gap: 40px
	}

	.photo-card {
		min-height: 360px
	}

	.signal {
		height: 34px;
		margin-bottom: 40px
	}

	.value-item {
		padding: 20px 0 20px 20px;
	}

	.value-item.active {
		padding-right: 16px
	}

	.section-head {
		margin-bottom: 48px
	}

	.standout-small-grid {
		grid-template-columns: 1fr
	}

	.testimonial {
		padding: 24px
	}

	.card-body {
		padding: 24px
	}

	.cta-actions {
		flex-direction: column;
		align-items: flex-start
	}

	.cta-actions .btn {
		width: 100%
	}

	.cta-image {
		min-height: 280px
	}
	
	.hero-copy .copy, .hero-copy {
	    align-items: center;
	}
	
	.hero-copy p, .hero-copy h1 {
        text-align: center;
    }
    
    .photo-card {
        order: 2;
    }
    
    .story-content {
        order: 1;
    }
}