/* ==========================================================================
   Geo Diving custom — Core (shared chrome + base)
   ========================================================================== */

/* --- Global --- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

html.lenis,
html.lenis body {
	height: auto;
	min-height: 100%;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

body {
	overflow-x: hidden;
	min-height: 100vh;
	min-height: 100dvh;
}

/* Sticky footer: keep footer at viewport bottom on short pages */
.wp-site-blocks {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	min-height: 100dvh;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

.wp-site-blocks > main {
	flex: 1 0 auto;
	max-width: 100%;
}

body.geo-menu-open {
	overflow: hidden;
	touch-action: none;
}

/* --- Soft backdrop --- */

.geo-backdrop {
	position: fixed;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	overflow: hidden;
}

.geo-backdrop__glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(80px);
}

.geo-backdrop__glow--left {
	left: 50%;
	top: 5rem;
	width: 980px;
	height: 460px;
	transform: translateX(-50%);
	background: linear-gradient(to top right, rgba(26, 159, 212, 0.25), transparent);
}

.geo-backdrop__glow--right {
	right: 3rem;
	bottom: 2.5rem;
	width: 420px;
	height: 220px;
	background: linear-gradient(to bottom left, rgba(62, 200, 244, 0.18), transparent);
	filter: blur(64px);
}

/* --- Buttons --- */

.geo-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	border-radius: 999px;
	padding: 0.625rem 1.25rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition:
		background 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease,
		transform 0.2s ease,
		box-shadow 0.25s ease,
		opacity 0.25s ease;
}

.geo-btn svg {
	width: 1rem;
	height: 1rem;
	fill: currentColor;
	stroke: currentColor;
	stroke-width: 0;
	flex-shrink: 0;
}

.geo-btn--primary {
	background: linear-gradient(135deg, var(--wp--preset--color--cyan, #3ec8f4), var(--wp--preset--color--cyan-dark, #1a9fd4));
	color: var(--wp--preset--color--navy-dark, #050d18);
	box-shadow: 0 4px 20px rgba(62, 200, 244, 0.25);
}

.geo-btn--primary:hover {
	opacity: 0.92;
	transform: translateY(-1px);
	box-shadow: 0 8px 28px rgba(62, 200, 244, 0.35);
	color: var(--wp--preset--color--navy-dark, #050d18);
}

.geo-btn--ghost {
	border: 1px solid rgba(255, 255, 255, 0.1);
	color: #fff;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.geo-btn--ghost:hover {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
}

/* --- Section layout --- */

.geo-section {
	position: relative;
	z-index: 1;
	max-width: 72rem;
	margin: 0 auto;
	padding: 0 1rem;
}

.geo-section--narrow {
	max-width: 48rem;
}

.geo-section__head {
	text-align: center;
	margin-bottom: 4rem;
}

.geo-section__label {
	font-size: 0.875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: var(--wp--preset--color--cyan, #3ec8f4);
	margin: 0 0 0.75rem;
}

.geo-section__title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.2;
	margin: 0 0 0.75rem;
	color: #fff;
}

.geo-section__desc {
	max-width: 28rem;
	margin: 0.75rem auto 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.65;
}

/* --- Header --- */

.geo-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding: 1.25rem 2rem;
	background: linear-gradient(180deg, rgba(5, 13, 24, 0.85) 0%, rgba(5, 13, 24, 0) 100%);
	transition:
		padding 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
		backdrop-filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.geo-header--scrolled {
	padding: 0.75rem 2rem;
	background: rgba(5, 13, 24, 0.92);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
}

.geo-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1320px;
	margin: 0 auto;
	gap: 2rem;
}

.geo-header__brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}

.geo-header__logo {
	display: block;
	height: clamp(36px, 5vw, 52px);
	width: auto;
	flex-shrink: 0;
	transition: height 0.35s ease;
}

.geo-header--scrolled .geo-header__logo {
	height: clamp(32px, 4vw, 44px);
}

.geo-header__inner > .wp-block-navigation {
	flex: 1;
	justify-content: center;
}

.geo-header__nav,
.geo-header .wp-block-navigation {
	flex: 1;
	display: flex;
	justify-content: center;
}

.geo-header .wp-block-navigation .wp-block-navigation__container {
	gap: 2rem;
}

.geo-header .wp-block-navigation-item__content {
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9375rem;
	font-weight: 500;
	padding: 0.25rem 0;
	text-decoration: none;
	transition: color 0.25s ease, text-shadow 0.25s ease;
}

.geo-header .wp-block-navigation-item__content:hover,
.geo-header .wp-block-navigation-item__content:focus-visible {
	color: var(--wp--preset--color--cyan, #3ec8f4);
	text-shadow: 0 0 14px rgba(62, 200, 244, 0.55);
}

.geo-header .wp-block-navigation-item.is-active > .wp-block-navigation-item__content,
.geo-header .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content,
.geo-header .wp-block-navigation-item.current-menu-ancestor > .wp-block-navigation-item__content,
.geo-header .wp-block-navigation-item__content[aria-current="page"] {
	color: #fff;
	text-shadow: none;
}

.geo-header .wp-block-navigation__container > .wp-block-navigation-item.is-active > .wp-block-navigation-item__content,
.geo-header .wp-block-navigation__container > .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content,
.geo-header .wp-block-navigation__container > .wp-block-navigation-item.current-menu-ancestor > .wp-block-navigation-item__content {
	position: relative;
}

.geo-header .wp-block-navigation__container > .wp-block-navigation-item.is-active > .wp-block-navigation-item__content::after,
.geo-header .wp-block-navigation__container > .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content::after,
.geo-header .wp-block-navigation__container > .wp-block-navigation-item.current-menu-ancestor > .wp-block-navigation-item__content::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--wp--preset--color--cyan, #3ec8f4);
	border-radius: 1px;
	box-shadow: 0 0 8px rgba(62, 200, 244, 0.6);
}

.geo-header .wp-block-navigation-item.is-active > .wp-block-navigation-item__content:hover,
.geo-header .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content:hover,
.geo-header .wp-block-navigation-item.current-menu-ancestor > .wp-block-navigation-item__content:hover,
.geo-header .wp-block-navigation-item__content[aria-current="page"]:hover {
	color: #fff;
	text-shadow: 0 0 10px rgba(62, 200, 244, 0.35);
}

.geo-header .wp-block-navigation .has-child > .wp-block-navigation-item__content {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.geo-header .wp-block-navigation .has-child .wp-block-navigation__submenu-icon {
	color: rgba(255, 255, 255, 0.55);
}

.geo-header .wp-block-navigation .has-child.is-active .wp-block-navigation__submenu-icon,
.geo-header .wp-block-navigation .has-child.current-menu-ancestor .wp-block-navigation__submenu-icon {
	color: var(--wp--preset--color--cyan, #3ec8f4);
}

.geo-header .wp-block-navigation .wp-block-navigation__submenu-container {
	background: rgba(5, 13, 24, 0.98) !important;
	background-color: rgba(5, 13, 24, 0.98) !important;
	border: 1px solid rgba(62, 200, 244, 0.18) !important;
	border-radius: 10px;
	box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(62, 200, 244, 0.06);
	color: rgba(255, 255, 255, 0.75) !important;
	gap: 0;
	min-width: 13.5rem;
	padding: 0.45rem 0;
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
}

.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item {
	color: rgba(255, 255, 255, 0.75);
}

.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
	color: rgba(255, 255, 255, 0.75) !important;
	display: block;
	padding: 0.65rem 1.15rem;
	white-space: nowrap;
	text-shadow: none;
}

.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
	color: var(--wp--preset--color--cyan, #3ec8f4) !important;
	background: rgba(62, 200, 244, 0.08);
	text-shadow: none;
}

.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item.is-active > .wp-block-navigation-item__content,
.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item.current-menu-item > .wp-block-navigation-item__content,
.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content[aria-current="page"] {
	color: #fff !important;
	background: rgba(62, 200, 244, 0.12);
}

.geo-header__actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 0;
}

.geo-header__cart {
	color: #fff;
	display: flex;
	align-items: center;
	text-decoration: none;
	transition: color 0.2s;
}

.geo-header__cart:hover {
	color: var(--wp--preset--color--cyan, #3ec8f4);
}

.geo-header__cart svg {
	width: 22px;
	height: 22px;
	fill: currentColor;
}

.geo-header__lang-wrap {
	position: relative;
}

.geo-header__lang {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
}

.geo-header__lang svg {
	width: 12px;
	height: 12px;
	fill: currentColor;
	transition: transform 0.2s ease;
}

.geo-header__lang-wrap:hover .geo-header__lang svg,
.geo-header__lang-wrap:focus-within .geo-header__lang svg {
	transform: rotate(180deg);
}

.geo-header__lang-menu {
	display: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	right: 0;
	margin: 0;
	padding: 0.35rem 0;
	list-style: none;
	min-width: 4.5rem;
	background: rgba(5, 13, 24, 0.98);
	border: 1px solid rgba(62, 200, 244, 0.18);
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
	z-index: 30;
}

.geo-header__lang-menu::before {
	content: "";
	position: absolute;
	top: -0.5rem;
	left: 0;
	right: 0;
	height: 0.5rem;
}

.geo-header__lang-wrap:hover .geo-header__lang-menu,
.geo-header__lang-wrap:focus-within .geo-header__lang-menu {
	display: block;
}

.geo-header__lang-menu a {
	display: block;
	padding: 0.5rem 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.8125rem;
	font-weight: 600;
}

.geo-header__lang-menu a:hover,
.geo-header__lang-menu a:focus-visible {
	color: var(--wp--preset--color--cyan, #3ec8f4);
	background: rgba(62, 200, 244, 0.08);
}

.geo-header__nav-list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.geo-header__nav-list > .menu-item {
	position: relative;
}

.geo-header__nav-list > .menu-item > a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: rgba(255, 255, 255, 0.75);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.2;
	padding: 0.25rem 0;
	text-decoration: none;
	transition: color 0.25s ease, text-shadow 0.25s ease;
}

.geo-header__nav-list > .menu-item > a:hover,
.geo-header__nav-list > .menu-item > a:focus-visible {
	color: var(--wp--preset--color--cyan, #3ec8f4);
	text-shadow: 0 0 14px rgba(62, 200, 244, 0.55);
}

.geo-header__submenu-icon {
	width: 10px;
	height: 10px;
	fill: rgba(255, 255, 255, 0.55);
	flex-shrink: 0;
	transition: transform 0.2s ease, fill 0.2s ease;
}

.geo-header__nav-list > .menu-item-has-children:hover > a .geo-header__submenu-icon,
.geo-header__nav-list > .menu-item-has-children:focus-within > a .geo-header__submenu-icon {
	transform: rotate(180deg);
	fill: var(--wp--preset--color--cyan, #3ec8f4);
}

.geo-header__nav-list > .menu-item-has-children.is-active > a .geo-header__submenu-icon,
.geo-header__nav-list > .menu-item-has-children.current-menu-ancestor > a .geo-header__submenu-icon {
	fill: var(--wp--preset--color--cyan, #3ec8f4);
}

.geo-header__nav-list > .menu-item.current-menu-item > a,
.geo-header__nav-list > .menu-item.current-menu-ancestor > a,
.geo-header__nav-list > .menu-item.is-active > a {
	color: #fff;
	position: relative;
}

.geo-header__nav-list > .menu-item.current-menu-item > a::after,
.geo-header__nav-list > .menu-item.current-menu-ancestor > a::after,
.geo-header__nav-list > .menu-item.is-active > a::after {
	content: "";
	position: absolute;
	bottom: -4px;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--wp--preset--color--cyan, #3ec8f4);
	border-radius: 1px;
	box-shadow: 0 0 8px rgba(62, 200, 244, 0.6);
}

.geo-header__nav-list .sub-menu {
	display: none;
	position: absolute;
	top: calc(100% + 0.5rem);
	left: 0;
	margin: 0;
	padding: 0.35rem 0;
	list-style: none;
	min-width: 13.5rem;
	background: rgba(5, 13, 24, 0.98);
	border: 1px solid rgba(62, 200, 244, 0.18);
	border-radius: 8px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
	z-index: 30;
}

.geo-header__nav-list .sub-menu::before {
	content: "";
	position: absolute;
	top: -0.5rem;
	left: 0;
	right: 0;
	height: 0.5rem;
}

.geo-header__nav-list > .menu-item:hover > .sub-menu,
.geo-header__nav-list > .menu-item:focus-within > .sub-menu {
	display: block;
}

.geo-header__nav-list .sub-menu a {
	display: block;
	padding: 0.5rem 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 0.8125rem;
	font-weight: 600;
	white-space: nowrap;
}

.geo-header__nav-list .sub-menu a:hover,
.geo-header__nav-list .sub-menu a:focus-visible {
	color: var(--wp--preset--color--cyan, #3ec8f4);
	background: rgba(62, 200, 244, 0.08);
}

.geo-header__toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 40px;
	height: 40px;
	padding: 8px;
	background: none;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 6px;
	cursor: pointer;
	flex-shrink: 0;
	transition: border-color 0.2s, background 0.2s;
}

.geo-header__toggle:hover {
	border-color: var(--wp--preset--color--cyan, #3ec8f4);
	background: rgba(62, 200, 244, 0.08);
}

.geo-header__toggle-bar {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.geo-header--menu-open {
	background: transparent;
	box-shadow: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.geo-header--menu-open .geo-header__toggle {
	border-color: rgba(62, 200, 244, 0.45);
	background: rgba(5, 13, 24, 0.35);
}

.geo-header--menu-open .geo-header__toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.geo-header--menu-open .geo-header__toggle-bar:nth-child(2) {
	opacity: 0;
}

.geo-header--menu-open .geo-header__toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.geo-header__overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 150;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
		visibility 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.geo-header--menu-open .geo-header__overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* --- About --- */

.geo-about {
	position: relative;
	z-index: 1;
	padding: 4rem 0 2rem;
}

.geo-about__layout {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2.5rem;
	max-width: 56rem;
	margin: 0 auto;
}

@media (min-width: 768px) {
	.geo-about__layout {
		flex-direction: row;
		align-items: flex-start;
		gap: 3rem;
	}
}

.geo-about__media {
	width: 100%;
	max-width: 22rem;
	flex-shrink: 0;
}

@media (min-width: 768px) {
	.geo-about__media {
		width: 42%;
		max-width: none;
	}
}

.geo-about__image {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.75rem;
	object-fit: cover;
}

.geo-about__content {
	flex: 1;
	width: 100%;
}

.geo-about__subtitle {
	font-size: clamp(1.5rem, 3vw, 1.875rem);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.75rem;
	color: #fff;
}

.geo-about__lead {
	font-size: 0.875rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55);
	margin: 0 0 1.25rem;
	max-width: 32rem;
}

.geo-about__lead:last-of-type {
	margin-bottom: 2rem;
}

.geo-about__features {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.geo-about__feature {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.geo-about__feature-icon {
	width: 2.25rem;
	height: 2.25rem;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.375rem;
	border-radius: 0.375rem;
	background: rgba(62, 200, 244, 0.1);
	border: 1px solid rgba(62, 200, 244, 0.25);
}

.geo-about__feature-icon svg {
	width: 1.125rem;
	height: 1.125rem;
	stroke: var(--wp--preset--color--cyan, #3ec8f4);
	fill: none;
	stroke-width: 1.75;
}

.geo-about__feature-title {
	font-size: 1rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin: 0 0 0.25rem;
}

.geo-about__feature-desc {
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.55);
	margin: 0;
}

/* --- FAQ --- */

.geo-faq {
	position: relative;
	z-index: 1;
	padding: 5rem 0;
}

.geo-faq__list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.geo-faq__item {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.04);
	overflow: hidden;
}

.geo-faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem;
	cursor: pointer;
	list-style: none;
	font-weight: 500;
	color: #fff;
}

.geo-faq__question::-webkit-details-marker {
	display: none;
}

.geo-faq__question svg {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
	stroke: rgba(255, 255, 255, 0.55);
	fill: none;
	stroke-width: 2;
	transition: transform 0.3s ease;
}

.geo-faq__item[open] .geo-faq__question svg {
	transform: rotate(180deg);
}

.geo-faq__answer {
	padding: 0 1rem 1rem;
	margin: 0;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.65;
}

/* --- CTA --- */

.geo-cta {
	position: relative;
	z-index: 1;
	padding: 5rem 0 6rem;
}

.geo-cta__box {
	position: relative;
	border-radius: 1.5rem;
	/* border: 1px solid rgba(255, 255, 255, 0); */
	background: linear-gradient(to bottom, rgba(26, 159, 212, 0.15), rgba(26, 159, 212, 0.04));
	padding: 3rem 2rem;
	text-align: center;
	overflow: hidden;
}

.geo-cta__box--media {
	padding: clamp(3rem, 8vw, 5rem) 2rem;
	border-radius: 1.25rem;
	background: linear-gradient(to bottom, rgba(26, 159, 212, 0.18), rgba(5, 13, 24, 0.72));
}

.geo-cta__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.geo-cta__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.geo-cta__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(5, 13, 24, 0.35) 0%, rgba(5, 13, 24, 0.88) 100%),
		linear-gradient(135deg, rgba(62, 200, 244, 0.16), transparent 58%);
	pointer-events: none;
}

.geo-cta__noise {
	position: absolute;
	inset: 0;
	z-index: 2;
	background-image: url('/wp-content/themes/geo-diving-custom/assets/images/noise.svg');
	opacity: 0.15;
	pointer-events: none;
}

.geo-cta__content {
	position: relative;
	z-index: 3;
}

.geo-cta__title {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 600;
	margin: 0 0 1.5rem;
	color: #fff;
}

.geo-cta__box--media .geo-cta__title {
	max-width: 36rem;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.geo-cta__title-accent {
	background: linear-gradient(to right, var(--wp--preset--color--cyan, #3ec8f4), rgba(255, 255, 255, 0.55));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.geo-cta__desc {
	max-width: 36rem;
	margin: 0 auto 2.5rem;
	font-size: 0.9375rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.65;
}

.geo-cta__box--media .geo-cta__desc {
	max-width: 28rem;
	margin-bottom: 2rem;
	color: rgba(255, 255, 255, 0.72);
}

.geo-cta__content .geo-btn {
	padding: 0.75rem 2rem;
}

/* --- Footer --- */

.geo-footer {
	position: relative;
	z-index: 1;
	flex-shrink: 0;
	margin-top: auto;
	background: rgba(255, 255, 255, 0.04);
	border-top: 1px solid rgba(255, 255, 255, 0.06);
	padding: 2.5rem 1.5rem 0;
	color: rgba(255, 255, 255, 0.7);
}

.geo-footer__inner {
	max-width: 72rem;
	margin: 0 auto;
}

.geo-footer__top {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
	.geo-footer__top {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}
}

.geo-footer__logo {
	height: 6rem;
	width: auto;
}

.geo-footer__desc {
	max-width: 26rem;
	margin: 1.5rem 0 0;
	font-size: 0.875rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.55);
}

.geo-footer__links {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 3rem;
	width: 100%;
}

@media (min-width: 768px) {
	.geo-footer__links {
		width: 45%;
		justify-content: space-between;
	}
}

.geo-footer__col-title {
	font-size: 1rem;
	font-weight: 600;
	color: #fff;
	margin: 0 0 0.75rem;
}

.geo-footer__col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.geo-footer__col li {
	margin: 0.25rem 0;
}

.geo-footer__col a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.2s ease;
}

.geo-footer__col a:hover {
	color: #fff;
}

.geo-footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	padding: 1rem 0;
}

@media (min-width: 768px) {
	.geo-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
	}
}

.geo-footer__copy {
	text-align: center;
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.4);
	margin: 0;
}

.geo-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.5rem;
	list-style: none;
	padding: 0;
	margin: 0;
}

.geo-footer__legal a {
	font-size: 0.875rem;
	color: rgba(255, 255, 255, 0.55);
	text-decoration: none;
	transition: color 0.2s ease;
}

.geo-footer__legal a:hover {
	color: #fff;
}

.geo-footer__front-page {
	margin-top: 0;
}

/* --- Scroll Animations --- */

.geo-animate {
	opacity: 0;
	transform: translateY(36px);
	transition:
		opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
		transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
	will-change: opacity, transform;
}

.geo-animate--visible {
	opacity: 1;
	transform: translateY(0);
}

/* --- Reduced motion --- */

@media (prefers-reduced-motion: reduce) {
	.geo-animate,
	.geo-hero__title--line1,
	.geo-hero__title--line2,
	.geo-hero__title--line3 {
		opacity: 1;
		transform: none;
		animation: none;
		transition: none;
	}

	.geo-contact__sent-icon {
		animation: none;
	}

	.geo-card,
	.geo-card__bg,
	.geo-card__glow,
	.geo-card__arrow,
	.geo-card__icon,
	.underwater-robot__benefit-card,
	.underwater-robot__intro-pillar,
	.underwater-robot__tech-chip,
	.underwater-robot__mission-card img,
	.underwater-works__service-card,
	.underwater-works__benefit-card,
	.underwater-works__image-shell,
	.academy__benefit-card,
	.academy__course-card,
	.academy__image-shell,
	.geo-header {
		transition: none;
	}

	.geo-card:hover,
	.underwater-robot__benefit-card:hover,
	.underwater-robot__intro-pillar:hover,
	.underwater-robot__tech-chip:hover,
	.underwater-works__service-card:hover,
	.underwater-works__benefit-card:hover,
	.underwater-works__image-shell:hover,
	.academy__benefit-card:hover,
	.academy__course-card:hover,
	.academy__image-shell:hover {
		transform: none;
	}

	.geo-card:hover .geo-card__bg,
	.geo-card--glow-active .geo-card__glow,
	.underwater-robot__mission-card:hover img {
		transform: none;
	}

	.geo-card--glow-active .geo-card__glow {
		opacity: 0;
	}

	.geo-card:hover .geo-card__arrow {
		opacity: 1;
		transform: none;
	}

	.underwater-robot__live-ping {
		animation: none;
	}
}

/* --- Responsive --- */

@media (max-width: 768px) {
	.geo-header {
		padding: 0.875rem 1rem;
	}

	.geo-header--scrolled {
		padding: 0.625rem 1rem;
	}

	.geo-header__inner {
		flex-wrap: nowrap;
		gap: 0.75rem;
		position: relative;
		z-index: 220;
	}

	.geo-header__toggle {
		display: flex;
		order: 3;
		margin-left: auto;
		position: relative;
		z-index: 230;
	}

	.geo-header__brand {
		order: 1;
		position: relative;
		z-index: 230;
	}

	/* Language lives inside the open menu panel, not the top bar */
	.geo-header__actions {
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 210;
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 1.25rem 1.5rem calc(1.25rem + env(safe-area-inset-bottom, 0px));
		border-top: 1px solid rgba(255, 255, 255, 0.08);
		background: linear-gradient(
			180deg,
			rgba(5, 13, 24, 0) 0%,
			rgba(5, 13, 24, 0.35) 40%,
			rgba(5, 13, 24, 0.45) 100%
		);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(12px);
		transition:
			opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
			visibility 0.35s cubic-bezier(0.22, 1, 0.36, 1) 0.05s,
			transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.05s;
	}

	.geo-header--menu-open .geo-header__actions {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.geo-header__lang-wrap {
		width: 100%;
		max-width: 20rem;
	}

	.geo-header__lang {
		width: 100%;
		justify-content: center;
		padding: 0.85rem 1rem;
		border: 1px solid rgba(255, 255, 255, 0.14);
		border-radius: 0.625rem;
		background: rgba(255, 255, 255, 0.06);
		font-size: 0.9375rem;
		transition:
			border-color 0.2s ease,
			background 0.2s ease;
	}

	.geo-header__lang:hover,
	.geo-header__lang[aria-expanded="true"] {
		border-color: rgba(62, 200, 244, 0.45);
		background: rgba(62, 200, 244, 0.1);
	}

	.geo-header__lang-menu {
		top: auto;
		bottom: calc(100% + 0.5rem);
		left: 0;
		right: 0;
		min-width: 0;
		width: 100%;
		background: rgba(5, 13, 24, 0.92);
		backdrop-filter: blur(16px);
		-webkit-backdrop-filter: blur(16px);
		border-radius: 0.625rem;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transform: translateY(6px);
		transition:
			opacity 0.25s ease,
			visibility 0.25s ease,
			transform 0.25s ease;
		display: block;
	}

	.geo-header__lang-menu::before {
		top: auto;
		bottom: -0.5rem;
		height: 0.5rem;
	}

	.geo-header__lang-wrap:hover .geo-header__lang-menu,
	.geo-header__lang-wrap:focus-within .geo-header__lang-menu {
		display: block;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}

	.geo-header__lang-wrap.is-lang-open .geo-header__lang-menu {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(0);
	}

	.geo-header__lang-wrap.is-lang-open .geo-header__lang svg {
		transform: rotate(180deg);
	}

	.geo-header__lang-menu a {
		padding: 0.75rem 1rem;
		text-align: center;
		font-size: 0.9375rem;
	}

	.geo-header__nav,
	.geo-header .wp-block-navigation {
		position: fixed;
		inset: 0;
		width: 100%;
		max-width: 100%;
		flex: none;
		order: 4;
		z-index: 200;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		background: rgba(5, 13, 24, 0.58);
		backdrop-filter: blur(24px) saturate(1.2);
		-webkit-backdrop-filter: blur(24px) saturate(1.2);
		padding: 5.75rem 1.5rem calc(6.5rem + env(safe-area-inset-bottom, 0px));
		transform: translateX(100%);
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition:
			transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
			visibility 0.45s cubic-bezier(0.22, 1, 0.36, 1);
		overflow-x: hidden;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		border-left: 0;
		box-shadow: none;
	}

	.geo-header--menu-open .geo-header__nav,
	.geo-header--menu-open .wp-block-navigation {
		transform: translateX(0);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
	}

	.geo-header__nav-list {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		width: 100%;
		max-width: 28rem;
		margin: 0 auto;
	}

	.geo-header__nav-list > .menu-item {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
		opacity: 0;
		transform: translateY(10px);
		transition:
			opacity 0.35s cubic-bezier(0.22, 1, 0.36, 1),
			transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
	}

	.geo-header--menu-open .geo-header__nav-list > .menu-item {
		opacity: 1;
		transform: translateY(0);
	}

	.geo-header--menu-open .geo-header__nav-list > .menu-item:nth-child(1) {
		transition-delay: 0.06s;
	}

	.geo-header--menu-open .geo-header__nav-list > .menu-item:nth-child(2) {
		transition-delay: 0.1s;
	}

	.geo-header--menu-open .geo-header__nav-list > .menu-item:nth-child(3) {
		transition-delay: 0.14s;
	}

	.geo-header--menu-open .geo-header__nav-list > .menu-item:nth-child(4) {
		transition-delay: 0.18s;
	}

	.geo-header--menu-open .geo-header__nav-list > .menu-item:nth-child(5) {
		transition-delay: 0.22s;
	}

	.geo-header--menu-open .geo-header__nav-list > .menu-item:nth-child(6) {
		transition-delay: 0.26s;
	}

	.geo-header__nav-list > .menu-item > a {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.75rem;
		padding: 1rem 0.15rem;
		font-size: 1.125rem;
		width: 100%;
	}

	.geo-header__nav-list > .menu-item.current-menu-item > a::after,
	.geo-header__nav-list > .menu-item.current-menu-ancestor > a::after,
	.geo-header__nav-list > .menu-item.is-active > a::after {
		display: none;
	}

	.geo-header__nav-list > .menu-item-has-children > a .geo-header__submenu-icon {
		width: 14px;
		height: 14px;
		transition: transform 0.25s ease, fill 0.25s ease;
	}

	.geo-header__nav-list > .menu-item-has-children.is-submenu-open > a .geo-header__submenu-icon {
		transform: rotate(180deg);
		fill: var(--wp--preset--color--cyan, #3ec8f4);
	}

	.geo-header__nav-list .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		max-height: 0;
		margin: 0;
		padding: 0 0 0 0.85rem;
		border: 0;
		border-left: 2px solid rgba(62, 200, 244, 0.25);
		border-radius: 0;
		box-shadow: none;
		background: transparent;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		transition:
			max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.25s ease,
			visibility 0.25s ease,
			padding 0.35s ease,
			margin 0.35s ease;
	}

	.geo-header__nav-list > .menu-item-has-children.is-submenu-open > .sub-menu {
		max-height: 20rem;
		margin: 0 0 0.65rem;
		padding: 0.15rem 0 0.35rem 0.85rem;
		opacity: 1;
		visibility: visible;
	}

	.geo-header__nav-list .sub-menu a {
		padding: 0.7rem 0.35rem;
		font-size: 0.9375rem;
		white-space: normal;
	}

	.geo-header .wp-block-navigation .wp-block-navigation__container {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
		max-width: 28rem;
		margin: 0 auto;
	}

	.geo-header .wp-block-navigation-item {
		width: 100%;
		border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	}

	.geo-header .wp-block-navigation-item__content {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 1rem 0.15rem;
		font-size: 1.125rem;
	}

	.geo-header .wp-block-navigation .wp-block-navigation__submenu-container {
		background: transparent !important;
		background-color: transparent !important;
		border: 0 !important;
		border-left: 2px solid rgba(62, 200, 244, 0.25) !important;
		border-radius: 0;
		box-shadow: none;
		min-width: 0;
		max-height: 0;
		margin: 0;
		padding: 0 0 0 0.85rem !important;
		position: static !important;
		width: 100%;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		transition:
			max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
			opacity 0.25s ease,
			visibility 0.25s ease;
	}

	.geo-header .wp-block-navigation-item.has-child.is-submenu-open > .wp-block-navigation__submenu-container {
		max-height: 20rem;
		margin: 0 0 0.65rem;
		padding: 0.15rem 0 0.35rem 0.85rem !important;
		opacity: 1;
		visibility: visible;
	}

	.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content {
		font-size: 0.9375rem;
		padding: 0.7rem 0.35rem;
		background: transparent !important;
	}

	.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:hover,
	.geo-header .wp-block-navigation .wp-block-navigation__submenu-container .wp-block-navigation-item__content:focus-visible {
		background: transparent !important;
	}

	.geo-about {
		padding: 2.5rem 0 1rem;
	}

	.geo-about__layout {
		gap: 2rem;
	}

	.geo-about__media {
		max-width: 20rem;
	}

	.geo-about__features {
		gap: 1.5rem;
	}

	.geo-section__head {
		margin-bottom: 2.5rem;
	}

	.geo-faq {
		padding: 3.5rem 0;
	}

	.geo-cta {
		padding: 3.5rem 0 4rem;
	}

	.geo-cta__box {
		padding: 2rem 1.25rem;
	}

	.geo-cta__box--media {
		padding: 2.5rem 1.25rem;
	}

	.geo-footer__links {
		flex-direction: column;
		gap: 1.5rem;
	}
}

@media (min-width: 769px) and (max-width: 1100px) {
	.geo-header .wp-block-navigation .wp-block-navigation__container {
		gap: 1.25rem;
	}

	.geo-header .wp-block-navigation-item__content {
		font-size: 0.875rem;
	}
}

