/* ========================================
	 00. Design Tokens
	 Edit palette, radius, shadows and sizing here first.
======================================== */
:root {
	--deep-blue: #163A5F;
	--gold: #C8A24D;
	--gold-strong: #CFA74E;
	--blue-strong: #1A446A;
	--white: #FFFFFF;
	--soft-bg: #F6F8FB;
	--dark-text: #1F2937;
	--muted: #64748B;
	--radius-lg: 22px;
	--radius-md: 16px;
	--shadow-soft: 0 22px 55px rgba(12, 34, 56, 0.16);
	--shadow-card: 0 12px 30px rgba(15, 23, 42, 0.08);
	--container: 1160px;
	--header-h: 82px;
}

/* ========================================
	 01. Base / Reset
======================================== */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Inter", "Open Sans", sans-serif;
	color: var(--dark-text);
	background:
		radial-gradient(circle at 12% -5%, rgba(200, 162, 77, 0.12), transparent 34%),
		radial-gradient(circle at 95% 0%, rgba(22, 58, 95, 0.08), transparent 28%),
		linear-gradient(180deg, #f9fbfd 0%, #f4f7fb 100%);
	line-height: 1.65;
	text-rendering: optimizeLegibility;
}

img {
	max-width: 100%;
	display: block;
}

a {
	color: inherit;
	text-decoration: none;
}

.container {
	width: min(var(--container), 92%);
	margin-inline: auto;
}

/* ========================================
	 02. Header / Navigation
======================================== */
.site-header {
	position: fixed;
	inset: 0 0 auto 0;
	z-index: 1000;
	height: var(--header-h);
	transition: background-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
	border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
	background: rgba(11, 28, 46, 0.8);
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 28px rgba(4, 10, 18, 0.22);
	border-color: rgba(255, 255, 255, 0.1);
}

.header-inner {
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
}

.brand {
	display: inline-flex;
	align-items: center;
	gap: 0.7rem;
	text-align: center;
	color: var(--white);
}

.brand-logo {
	width: 44px;
	height: 44px;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 6px 16px rgba(9, 20, 33, 0.28);
}

.brand-mark {
	width: 38px;
	aspect-ratio: 1;
	border-radius: 12px;
	display: grid;
	place-items: center;
	font-size: 0.8rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	color: var(--deep-blue);
	background: linear-gradient(145deg, #f2d28b 0%, #c8a24d 100%);
}

.brand-mark-fallback {
	display: none;
}

.brand-text {
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 700;
}

.primary-nav {
	display: flex;
	align-items: center;
	gap: 1.15rem;
}

.primary-nav a {
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.92rem;
	font-weight: 500;
	position: relative;
}

.primary-nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.35rem;
	width: 0;
	height: 2px;
	background: var(--gold);
	transition: width 0.26s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after {
	width: 100%;
}

.header-share-btn {
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.06);
	color: #f3d58f;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease;
}

.header-socials-btn {
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.94);
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	height: 2.28rem;
	padding: 0 0.82rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	cursor: pointer;
	transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.header-socials-icon {
	width: 1rem;
	height: 1rem;
	flex: 0 0 auto;
}

.header-share-btn:hover,
.header-share-btn:focus-visible {
	transform: translateY(-1px);
	background: rgba(243, 213, 143, 0.15);
}

.header-socials-btn:hover,
.header-socials-btn:focus-visible,
.header-socials-btn:active {
	transform: translateY(-1px);
	background: rgba(255, 255, 255, 0.15);
	color: #f3d58f;
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	gap: 0.3rem;
	padding-left: 0.4rem;
	margin-left: 0.2rem;
	border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.lang-btn {
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.92);
	border-radius: 999px;
	padding: 0.3rem 0.58rem;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	cursor: pointer;
}

.lang-btn.is-active {
	background: linear-gradient(145deg, #dfbe74 0%, #cfa74e 95%);
	border-color: transparent;
	color: #0f2237;
}

.menu-toggle {
	border: 0;
	background: transparent;
	display: none;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	cursor: pointer;
}

.menu-toggle span {
	display: block;
	width: 24px;
	height: 2px;
	margin: 8px auto;
	background: var(--white);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ========================================
	 03. Hero Section
======================================== */
.hero {
	min-height: 100svh;
	position: relative;
	display: grid;
	align-items: center;
	background-image: url("/assets/images/hero-diakopto.svg");
	background-size: cover;
	background-position: center 40%;
	isolation: isolate;
	color: var(--white);
	overflow: hidden;
}

.hero-slideshow {
	position: absolute;
	inset: 0;
	z-index: -3;
}

.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	background-size: cover;
	background-position: center 42%;
	transform: scale(1.03);
	transition: opacity 1.2s ease, transform 7s ease;
}

.hero-slide.is-active {
	opacity: 1;
	transform: scale(1.08);
	animation: kenBurnsHero 13s ease-in-out infinite alternate;
	animation-delay: -2.2s;
}

@keyframes kenBurnsHero {
	0% {
		transform: scale(1.06) translate3d(0, 0, 0);
		background-position: 50% 42%;
	}
	50% {
		transform: scale(1.16) translate3d(-1.4%, -1.2%, 0);
		background-position: 48% 39%;
	}
	100% {
		transform: scale(1.11) translate3d(1.3%, 1%, 0);
		background-position: 52% 45%;
	}
}

@keyframes kenBurnsPhoto {
	0% {
		transform: scale(1.05) translate3d(0, 0, 0);
	}
	50% {
		transform: scale(1.13) translate3d(-1.8%, -1.3%, 0);
	}
	100% {
		transform: scale(1.08) translate3d(1.5%, 1.1%, 0);
	}
}

@keyframes gradientDrift {
	0% {
		transform: translate3d(-2%, -1.5%, 0) scale(1);
		opacity: 0.78;
	}
	50% {
		transform: translate3d(1.2%, 1%, 0) scale(1.05);
		opacity: 0.95;
	}
	100% {
		transform: translate3d(2%, 1.6%, 0) scale(1.02);
		opacity: 0.84;
	}
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(7, 20, 34, 0.28) 0%, rgba(7, 20, 34, 0.6) 64%, rgba(7, 20, 34, 0.86) 100%),
		radial-gradient(circle at 50% 120%, rgba(5, 14, 24, 0.7), transparent 52%);
	z-index: -2;
}

.hero-gradient {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 22% 24%, rgba(207, 167, 78, 0.34), transparent 44%),
		radial-gradient(circle at 84% 15%, rgba(255, 255, 255, 0.12), transparent 34%),
		linear-gradient(110deg, rgba(26, 68, 106, 0.12), transparent 45%);
	z-index: -1;
}

.hero-gradient::before,
.hero-gradient::after {
	content: "";
	position: absolute;
	inset: -18%;
	pointer-events: none;
	filter: blur(14px);
	animation: gradientDrift 16s ease-in-out infinite alternate;
}

.hero-gradient::before {
	background: radial-gradient(circle at 30% 30%, rgba(200, 162, 77, 0.18), transparent 48%);
	animation-delay: -4.6s;
}

.hero-gradient::after {
	background: radial-gradient(circle at 72% 62%, rgba(96, 165, 250, 0.13), transparent 52%);
	animation-duration: 19s;
	animation-direction: alternate-reverse;
	animation-delay: -9.2s;
}

.hero-content {
	padding-top: calc(var(--header-h) + 1.2rem);
	padding-bottom: 2.6rem;
	max-width: 960px;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateY(-7vh);
}

.hero-shell {
	max-width: 850px;
	padding: clamp(1.2rem, 2.3vw, 2.1rem);
	width: min(850px, 100%);
	border-radius: var(--radius-lg);
	background: linear-gradient(135deg, rgba(15, 34, 54, 0.54), rgba(15, 34, 54, 0.24));
	border: 1px solid rgba(255, 255, 255, 0.18);
	backdrop-filter: blur(5px);
	box-shadow: var(--shadow-soft);
	text-align: center;
	animation: heroCardFloat 5s ease-in-out infinite;
	will-change: transform, box-shadow;
}

@keyframes heroCardFloat {
	0%,
	100% {
		transform: translateY(0);
		box-shadow: 0 22px 55px rgba(12, 34, 56, 0.16);
	}
	50% {
		transform: translateY(-15px) scale(1.012);
		box-shadow: 0 36px 78px rgba(12, 34, 56, 0.31);
	}
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	border: 1px solid rgba(207, 167, 78, 0.62);
	border-radius: 999px;
	padding: 0.5rem 1rem;
	background: rgba(207, 167, 78, 0.1);
	color: #fff8e8;
	backdrop-filter: blur(4px);
	font-size: 0.84rem;
	letter-spacing: 0.04em;
}

.hero h1 {
	margin-top: 1rem;
	font-family: "Playfair Display", Georgia, serif;
	font-weight: 800;
	letter-spacing: 0.01em;
	line-height: 1.06;
	font-size: clamp(2.2rem, 6vw, 5rem);
	color: var(--gold-strong);
	text-wrap: balance;
	text-shadow: 0 8px 28px rgba(5, 13, 24, 0.45);
}

.hero-subtitle {
	margin-top: 1.3rem;
	font-size: clamp(1.04rem, 2.1vw, 1.34rem);
	max-width: 74ch;
	color: rgba(255, 255, 255, 0.95);
}

.hero-text {
	margin-top: 1rem;
	max-width: 78ch;
	color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
	margin-top: 1.8rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	justify-content: center;
}

.btn {
	border: 1px solid transparent;
	padding: 0.82rem 1.25rem;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 600;
	transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible,
.btn:active {
	transform: translateY(-4px) scale(1.02);
	box-shadow: 0 14px 28px rgba(12, 34, 56, 0.2);
}

.btn-gold {
	background: linear-gradient(145deg, #dfbe74 0%, #cfa74e 95%);
	color: #0f2237;
	box-shadow: 0 9px 22px rgba(207, 167, 78, 0.32);
}

.btn-outline {
	border-color: rgba(255, 255, 255, 0.56);
	color: var(--white);
	background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover,
.btn-outline:focus-visible,
.btn-outline:active {
	background: rgba(255, 255, 255, 0.13);
	border-color: rgba(255, 255, 255, 0.8);
}

.btn-light {
	background: var(--white);
	color: var(--deep-blue);
}

.btn-outline-light {
	border-color: rgba(255, 255, 255, 0.8);
	color: var(--white);
}

.btn-outline-dark {
	border-color: rgba(22, 58, 95, 0.35);
	color: var(--deep-blue);
	background: rgba(22, 58, 95, 0.03);
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible,
.btn-outline-dark:active {
	background: rgba(22, 58, 95, 0.08);
	border-color: rgba(22, 58, 95, 0.55);
}

.btn-gold:hover,
.btn-gold:focus-visible,
.btn-gold:active {
	box-shadow: 0 18px 34px rgba(207, 167, 78, 0.45);
}

.btn-light:hover,
.btn-light:focus-visible,
.btn-light:active {
	box-shadow: 0 16px 30px rgba(255, 255, 255, 0.26);
}

.btn-outline-light:hover,
.btn-outline-light:focus-visible,
.btn-outline-light:active {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.98);
}

/* Stronger color feedback on touch for CTA buttons */
.hero-actions .btn-gold:active,
.feature-actions .btn-gold:active,
.company-actions .btn-gold:active {
	background: linear-gradient(145deg, #e7c97f 0%, #b88f3a 95%);
	color: #ffffff;
}

.hero-actions .btn-outline:active,
.feature-actions .btn-outline:active {
	background: rgba(255, 255, 255, 0.24);
	color: #ffffff;
}

.hero-actions .btn-light:active,
.feature-actions .btn-light:active {
	background: #e8f1fb;
	color: #133552;
}

.hero-actions .btn-outline-light:active,
.feature-actions .btn-outline-light:active {
	background: #ffffff;
	color: #133552;
}

.company-actions .btn-outline-dark:active,
.feature-actions .btn-outline-dark:active {
	background: rgba(22, 58, 95, 0.2);
	color: #0f2d49;
}

.scroll-indicator {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	transform: translateX(-50%);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.85);
	transition: transform 0.24s ease, opacity 0.24s ease;
}

.scroll-indicator:hover,
.scroll-indicator:focus-visible,
.scroll-indicator:active,
.section-scroll-indicator:hover,
.section-scroll-indicator:focus-visible,
.section-scroll-indicator:active {
	transform: translateX(-50%) translateY(2px);
	opacity: 0.92;
}

.section-scroll-indicator:hover,
.section-scroll-indicator:focus-visible,
.section-scroll-indicator:active {
	transform: translateY(2px);
}

.section-scroll-indicator {
	display: grid;
	place-items: center;
	width: fit-content;
	margin: 1.4rem auto 0;
	color: rgba(22, 58, 95, 0.72);
	transition: transform 0.24s ease, opacity 0.24s ease;
}

.final-cta .section-scroll-indicator {
	color: rgba(255, 255, 255, 0.85);
}

.mouse-scroll-icon {
	width: 30px;
	height: 44px;
	overflow: visible;
}

.mouse-shell {
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
}

.mouse-track {
	stroke: currentColor;
	stroke-width: 1.5;
	stroke-linecap: round;
	opacity: 0.56;
}

.mouse-wheel {
	fill: currentColor;
	animation: mouseWheelPulse 1.7s infinite;
}

.feature-wrap > .section-scroll-indicator,
.company-wrap > .section-scroll-indicator {
	grid-column: 1 / -1;
}

@keyframes mouseWheelPulse {
	0%,
	100% {
		transform: translateY(0);
		opacity: 0.95;
	}
	50% {
		transform: translateY(7px);
		opacity: 1;
	}
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ========================================
	 04. Shared Section Patterns
======================================== */
.section {
	padding: clamp(4.6rem, 7vw, 7.3rem) 0;
}

.section-soft {
	background:
		radial-gradient(circle at 12% 0%, rgba(200, 162, 77, 0.12), transparent 34%),
		radial-gradient(circle at 92% 22%, rgba(22, 58, 95, 0.08), transparent 32%),
		linear-gradient(180deg, #f7f9fc 0%, #f2f6fb 100%);
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

.section-soft::before,
.section-soft::after {
	content: "";
	position: absolute;
	inset: -20%;
	pointer-events: none;
	z-index: 0;
	filter: blur(18px);
	animation: gradientDrift 22s ease-in-out infinite alternate;
}

.section-soft::before {
	background: radial-gradient(circle at 24% 24%, rgba(200, 162, 77, 0.09), transparent 42%);
	animation-delay: -7.5s;
}

.section-soft::after {
	background: radial-gradient(circle at 78% 62%, rgba(26, 68, 106, 0.08), transparent 45%);
	animation-duration: 26s;
	animation-direction: alternate-reverse;
	animation-delay: -13s;
}

.section-soft > .container {
	position: relative;
	z-index: 1;
}

.section-intro {
	max-width: 830px;
}

.eyebrow {
	font-size: 0.8rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-strong);
	font-weight: 700;
}

h2 {
	margin-top: 0.55rem;
	font-family: "Playfair Display", Georgia, serif;
	font-size: clamp(1.72rem, 4vw, 2.8rem);
	line-height: 1.15;
	color: var(--deep-blue);
}

.section-intro p {
	margin-top: 0.95rem;
	color: #334155;
}

.announcement-photo {
	margin-top: 1.8rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-soft);
	border: 1px solid rgba(22, 58, 95, 0.12);
}

.announcement-photo img {
	width: 100%;
	height: clamp(220px, 42vw, 420px);
	object-fit: cover;
	object-position: center;
	display: block;
	animation: kenBurnsPhoto 16s ease-in-out infinite alternate;
	animation-delay: -1.6s;
	will-change: transform;
}

.domains-title-readable {
	max-width: none;
	line-height: 1.3;
	letter-spacing: 0.012em;
	word-spacing: 0.06em;
	font-size: clamp(1.52rem, 3.1vw, 2.25rem);
	text-wrap: balance;
}

.domains-intro {
	max-width: none;
}

/* ========================================
	 05. Community Section (Icon Cards)
======================================== */
.community-top {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 1rem;
	align-items: stretch;
}

.community-photo {
	border-radius: var(--radius-lg);
	overflow: hidden;
	border: 1px solid rgba(22, 58, 95, 0.12);
	box-shadow: var(--shadow-soft);
}

.community-photo img {
	width: 100%;
	height: 100%;
	min-height: 320px;
	object-fit: cover;
	object-position: center;
	display: block;
	animation: kenBurnsPhoto 18s ease-in-out infinite alternate-reverse;
	animation-delay: -6.4s;
	will-change: transform;
}

.icon-grid {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.icon-card {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border-radius: var(--radius-md);
	padding: 1.4rem;
	border: 1px solid rgba(22, 58, 95, 0.1);
	box-shadow: var(--shadow-card);
	transition: transform 0.26s ease, box-shadow 0.26s ease;
}

.icon-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-soft);
}

.icon {
	width: 40px;
	aspect-ratio: 1;
	border-radius: 10px;
	background: rgba(207, 167, 78, 0.18);
	display: grid;
	place-items: center;
	color: #89661f;
	font-size: 1rem;
}

.icon-card h3 {
	margin-top: 0.85rem;
	color: var(--deep-blue);
	font-size: 1.08rem;
}

.icon-card p {
	margin-top: 0.5rem;
	color: #475569;
	font-size: 0.95rem;
}

/* ========================================
	 06. Project Status (Timeline)
======================================== */
.timeline {
	margin-top: 2rem;
	border-radius: var(--radius-lg);
	overflow: hidden;
	background: linear-gradient(170deg, rgba(22, 58, 95, 0.95), rgba(11, 29, 48, 0.95));
	padding: 1.25rem;
	display: grid;
	gap: 0.65rem;
}

.timeline-item {
	position: relative;
	padding: 1rem 1rem 1rem 2.7rem;
	border-radius: 12px;
	color: rgba(255, 255, 255, 0.86);
	background: rgba(255, 255, 255, 0.05);
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: 1rem;
	top: 1.3rem;
	width: 10px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.45);
}

.timeline-item.done::before {
	background: var(--gold);
}

.timeline-item.active {
	background: rgba(200, 162, 77, 0.14);
	border: 1px solid rgba(200, 162, 77, 0.5);
}

.timeline-item h3 {
	font-size: 1rem;
}

.timeline-item p {
	margin-top: 0.25rem;
	font-size: 0.94rem;
}

/* ========================================
	 07. Domains Section (Cards)
======================================== */
.domain-grid {
	margin-top: 2rem;
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.domain-card {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border-radius: var(--radius-md);
	padding: 1.25rem;
	border: 1px solid rgba(22, 58, 95, 0.11);
	box-shadow: var(--shadow-card);
	position: relative;
	isolation: isolate;
	overflow: hidden;
	transition: transform 0.25s ease;
}

.domain-card::after {
	content: "";
	position: absolute;
	inset: auto -60% 0 -60%;
	height: 4px;
	background: linear-gradient(90deg, transparent, var(--gold), transparent);
	transition: inset 0.3s ease;
	z-index: -1;
}

.domain-card:hover {
	transform: translateY(-4px);
}

.domain-card:hover::after {
	inset: auto 0 0 0;
}

.domain-card h3 {
	color: var(--deep-blue);
	font-size: 1.04rem;
	word-break: break-word;
}

.domain-card p {
	margin-top: 0.55rem;
	color: #475569;
}

/* ========================================
	 08. Odontotos Feature Section
======================================== */
.feature-wrap {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: 1.2fr 1fr;
	align-items: stretch;
}

.feature-media {
	position: relative;
	overflow: hidden;
	min-height: 380px;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-soft);
}

.feature-media img {
	width: 100%;
	height: 100%;
	min-height: 380px;
	object-fit: cover;
	object-position: center;
	display: block;
	animation: kenBurnsPhoto 17s ease-in-out infinite alternate;
	animation-delay: -3.9s;
	will-change: transform;
}

.feature-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(9, 24, 40, 0.12), rgba(9, 24, 40, 0.56));
}

.feature-content {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	border: 1px solid rgba(22, 58, 95, 0.08);
	box-shadow: var(--shadow-card);
}

.feature-content p {
	margin-top: 0.8rem;
}

.feature-note {
	margin-top: 1rem;
	border-left: 3px solid var(--gold);
	padding: 0.6rem 0 0.6rem 0.8rem;
	color: #334155;
	background: rgba(200, 162, 77, 0.08);
	border-radius: 0 10px 10px 0;
}

.feature-cta {
	margin-top: 1rem;
	display: inline-flex;
}

.feature-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
	align-items: center;
}

/* ========================================
	 09. Local Support / Giveaway Section
======================================== */
.support-grid {
	margin-top: 2rem;
	display: grid;
	grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
	gap: 1.15rem;
	align-items: start;
}

.support-grid-single {
	grid-template-columns: 1fr;
}

.support-collab-text {
	margin: 0;
	text-align: left;
	max-width: none;
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(22, 58, 95, 0.08);
	padding: 1.5rem;
	box-shadow: var(--shadow-card);
}

.support-collab-text h2 {
	margin-bottom: 0.8rem;
}

.support-collab-text p {
	color: #334155;
}

.support-collab-text p + p {
	margin-top: 0.95rem;
}

.support-map-embed {
	background: linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(22, 58, 95, 0.1);
	padding: 0.9rem;
	box-shadow: var(--shadow-card);
}

.support-map-embed iframe {
	width: 100%;
	min-height: 470px;
	border: 1px solid rgba(22, 58, 95, 0.12);
	border-radius: 14px;
	box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.support-card {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border-radius: var(--radius-lg);
	border: 1px solid rgba(22, 58, 95, 0.08);
	padding: 1.5rem;
	box-shadow: var(--shadow-card);
}

.support-card h3 {
	color: var(--deep-blue);
	font-size: 1.2rem;
}

.support-card p {
	margin-top: 0.7rem;
	color: #334155;
}

.support-copy p + p {
	margin-top: 0.95rem;
}

.support-card ul {
	margin-top: 0.7rem;
	padding-left: 1.1rem;
}

/* ========================================
	 10. Testimonials Section
======================================== */
.testimonials-section {
	background:
		radial-gradient(circle at 86% 8%, rgba(200, 162, 77, 0.14), transparent 34%),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.testimonials-intro {
	max-width: 780px;
}

.testimonials-grid {
	margin-top: 1.7rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.testimonial-card {
	background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
	border: 1px solid rgba(22, 58, 95, 0.12);
	border-radius: var(--radius-md);
	padding: 1.1rem;
	box-shadow: var(--shadow-card);
	display: grid;
	gap: 0.55rem;
	align-content: start;
	transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.testimonial-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-soft);
}

.testimonial-stars {
	font-size: 0.96rem;
	letter-spacing: 0.1em;
	color: #cfa74e;
	line-height: 1;
}

.testimonial-quote {
	color: #334155;
	font-size: 0.95rem;
	line-height: 1.62;
}

.testimonial-author {
	color: var(--deep-blue);
	font-weight: 700;
	font-size: 0.9rem;
}

.testimonial-source {
	font-size: 0.84rem;
	color: #0f5ba7;
	font-weight: 600;
	width: fit-content;
}

.testimonials-actions {
	margin-top: 1.2rem;
	display: flex;
	justify-content: center;
}

/* ========================================
	 11. Company Section (Secondary Priority)
======================================== */
.company-wrap {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1.2fr 1fr;
}

.company-main {
	background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
	border: 1px solid rgba(22, 58, 95, 0.09);
	border-radius: var(--radius-lg);
	padding: 1.4rem;
	box-shadow: var(--shadow-card);
}

.company-logo {
	width: 62px;
	height: 62px;
	object-fit: cover;
	border-radius: 14px;
	border: 1px solid rgba(22, 58, 95, 0.16);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
	margin-bottom: 0.75rem;
}

.section-secondary {
	opacity: 0.96;
}

.section-secondary .company-main {
	box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

.section-secondary .service-tags {
	background: linear-gradient(150deg, rgba(18, 46, 74, 0.9), rgba(11, 30, 50, 0.9));
	box-shadow: 0 12px 30px rgba(12, 30, 50, 0.16);
}

.company-link {
	margin-top: 1rem;
	display: inline-block;
	color: var(--deep-blue);
	font-weight: 700;
}

.company-note {
	margin-top: 1rem;
	color: #475569;
}

.company-actions {
	margin-top: 1rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem;
}

.service-tags {
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
	gap: 0.65rem;
	background: linear-gradient(150deg, rgba(22, 58, 95, 0.98), rgba(11, 30, 50, 0.98));
	border-radius: var(--radius-lg);
	padding: 1rem;
	box-shadow: var(--shadow-soft);
}

.service-tags span {
	border: 1px solid rgba(200, 162, 77, 0.45);
	color: rgba(255, 255, 255, 0.9);
	border-radius: 999px;
	padding: 0.46rem 0.85rem;
	font-size: 0.84rem;
}

.service-note {
	margin-top: 0.25rem;
	width: 100%;
	padding-top: 0.6rem;
	border-top: 1px dashed rgba(200, 162, 77, 0.35);
	color: rgba(255, 255, 255, 0.92);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* ========================================
	 11. Final CTA Section
======================================== */
.final-cta {
	padding: 5.5rem 0;
	background: linear-gradient(145deg, #102c48 0%, #163a5f 55%, #214f7a 100%);
	color: var(--white);
	position: relative;
	overflow: clip;
}

.final-cta::before {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(200, 162, 77, 0.35), transparent 70%);
	top: -120px;
	right: -90px;
}

.final-cta-inner {
	position: relative;
	z-index: 1;
	max-width: 920px;
}

.final-cta h2 {
	color: var(--white);
}

.final-cta p {
	margin-top: 0.9rem;
	color: rgba(255, 255, 255, 0.9);
}

.contact-mini-form {
	margin-top: 1.25rem;
	display: grid;
	gap: 0.72rem;
	max-width: 760px;
}

.contact-mini-form input,
.contact-mini-form select,
.contact-mini-form textarea {
	width: 100%;
	padding: 0.75rem 0.9rem;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(255, 255, 255, 0.12);
	color: var(--white);
	font: inherit;
}

.contact-mini-form input::placeholder,
.contact-mini-form textarea::placeholder {
	color: rgba(255, 255, 255, 0.74);
}

.contact-mini-form textarea {
	resize: vertical;
	min-height: 120px;
}

.contact-mini-form select option {
	color: #10283f;
}

.contact-mini-form .form-note {
	margin-top: 0.15rem;
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.78);
}

.contact-collab-note {
	margin: 0;
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.9);
}

/* ========================================
	 12. Footer Section
======================================== */
.site-footer {
	background: #0e243b;
	color: rgba(255, 255, 255, 0.9);
	padding: 2.4rem 0;
}

.footer-inner {
	display: grid;
	gap: 0.8rem;
}

.footer-inner a {
	color: #f3d58f;
}

.footer-shell {
	display: grid;
	grid-template-columns: 0.9fr 2.1fr;
	gap: 1rem;
	align-items: start;
	padding: 1rem;
	border-radius: 14px;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: rgba(255, 255, 255, 0.03);
}

.footer-left,
.footer-center {
	display: grid;
	gap: 0.35rem;
}

.footer-left {
	align-content: start;
	justify-items: start;
}

.footer-main-logo {
	width: clamp(180px, 22vw, 320px);
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 8px 16px rgba(5, 12, 20, 0.28));
}

.footer-block-title {
	font-weight: 700;
	color: #f3d58f;
}

.footer-logo-note {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.72);
}

.footer-center p {
	margin: 0;
}

.footer-discreet {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem;
	font-size: 0.86rem;
	color: rgba(255, 255, 255, 0.78);
}

.footer-contact-line {
	margin-top: 0.35rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.footer-contact-line a {
	display: inline-flex;
	align-items: center;
	gap: 0.32rem;
	padding: 0.36rem 0.58rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.17);
	background: rgba(255, 255, 255, 0.04);
	font-size: 0.84rem;
}

.mini-icon {
	display: inline-grid;
	place-items: center;
	min-width: 1.1rem;
	height: 1.1rem;
	padding: 0 0.26rem;
	border-radius: 999px;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1;
	color: #f8fafc;
	background: rgba(243, 213, 143, 0.24);
}

.mini-icon-phone {
	background: rgba(74, 222, 128, 0.22);
	color: #dcfce7;
}

.mini-icon-viber {
	background: rgba(167, 139, 250, 0.22);
	color: #ede9fe;
}

.mini-icon-whatsapp {
	background: rgba(34, 197, 94, 0.24);
	color: #dcfce7;
}

.mini-icon-mail {
	background: rgba(56, 189, 248, 0.22);
	color: #e0f2fe;
}

.mini-icon-facebook {
	background: rgba(96, 165, 250, 0.24);
	color: #dbeafe;
}

.mini-icon-instagram {
	background: rgba(244, 114, 182, 0.24);
	color: #fce7f3;
}

.mini-icon-share {
	background: rgba(251, 191, 36, 0.24);
	color: #fef3c7;
}

.footer-social-inline {
	margin-top: 0.25rem;
	display: flex;
	flex-wrap: wrap;
	gap: 0.6rem;
}

.footer-social-inline a {
	display: inline-flex;
	align-items: center;
	gap: 0.34rem;
	padding: 0.34rem 0.56rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.04);
	font-size: 0.82rem;
}

.footer-share-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.34rem;
	padding: 0.34rem 0.56rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.16);
	background: rgba(255, 255, 255, 0.04);
	font-size: 0.82rem;
	color: #f3d58f;
	cursor: pointer;
	font: inherit;
}

.footer-copyright {
	margin-top: 0.35rem;
	font-size: 0.84rem;
	color: rgba(255, 255, 255, 0.8);
}

.footer-hashtags {
	margin-top: 0.7rem;
	font-size: 0.84rem;
	text-align: center;
	color: rgba(255, 255, 255, 0.72);
}

.to-top-btn {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	width: 2.65rem;
	height: 2.65rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.38);
	background: linear-gradient(145deg, rgba(22, 58, 95, 0.92), rgba(11, 30, 50, 0.92));
	color: #f3d58f;
	font-size: 1.1rem;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 12px 28px rgba(5, 12, 20, 0.28);
	opacity: 0;
	transform: translateY(10px);
	pointer-events: none;
	transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
	z-index: 1001;
}

.to-top-btn.show {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.to-top-btn:hover,
.to-top-btn:focus-visible {
	background: linear-gradient(145deg, rgba(25, 67, 108, 0.96), rgba(14, 39, 64, 0.96));
}

/* ========================================
	 13. Scroll Reveal Animations
======================================== */
.reveal {
	opacity: 0;
	transform: translateY(22px) scale(0.985);
	transition: opacity 0.72s cubic-bezier(0.22, 1, 0.36, 1), transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-hero {
	transform: translateY(26px);
}

.reveal.in-view {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* ========================================
	 14. Responsive Breakpoints
	 Tablet: 1030px / Mobile menu: 860px / Small mobile: 640px
======================================== */
@media (max-width: 1030px) {
	.community-top {
		grid-template-columns: 1fr;
	}

	.community-photo img {
		min-height: 260px;
	}

	.icon-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.domain-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.feature-wrap,
	.company-wrap {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 860px) {
	.menu-toggle {
		display: block;
	}

	.primary-nav {
		position: fixed;
		top: calc(var(--header-h) + 0.6rem);
		right: 4%;
		left: 4%;
		max-height: calc(100svh - var(--header-h) - 1.6rem);
		overflow: auto;
		background: linear-gradient(155deg, rgba(11, 29, 48, 0.99), rgba(8, 21, 36, 0.99));
		border: 1px solid rgba(200, 162, 77, 0.42);
		border-radius: 18px;
		padding: 1rem;
		display: grid;
		gap: 0.25rem;
		transform-origin: top;
		transform: scaleY(0);
		opacity: 0;
		pointer-events: none;
		transition: transform 0.22s ease, opacity 0.22s ease;
	}

	.primary-nav a {
		padding: 0.72rem 0.6rem;
		font-size: 1rem;
		border-radius: 10px;
	}

	.lang-switch {
		margin-left: 0;
		padding-left: 0;
		border-left: 0;
		padding-top: 0.3rem;
	}

	.header-share-btn {
		width: 2.2rem;
		height: 2.2rem;
		margin-top: 0.2rem;
	}

	.header-socials-btn {
		height: 2.3rem;
		padding: 0 0.95rem;
		margin-top: 0.2rem;
	}

	.primary-nav a:hover,
	.primary-nav a:focus-visible {
		background: rgba(255, 255, 255, 0.08);
	}

	.primary-nav.open {
		transform: scaleY(1);
		opacity: 1;
		pointer-events: auto;
	}

	.site-header.nav-open {
		background: rgba(12, 29, 48, 0.96);
		backdrop-filter: blur(8px);
	}

	.support-grid {
		grid-template-columns: 1fr;
	}

	.support-map-embed iframe {
		min-height: 360px;
	}

	.footer-shell {
		grid-template-columns: 1fr;
	}

	.footer-left {
		justify-items: center;
	}

}

@media (max-width: 640px) {
	.section {
		padding: 4.2rem 0;
	}

	.hero-content {
		padding-top: calc(var(--header-h) + 1.8rem);
		padding-bottom: 4.8rem;
		transform: none;
	}

	.hero-shell {
		padding: 1.05rem;
	}

	.hero-actions .btn {
		width: 100%;
		text-align: center;
	}

	.icon-grid,
	.domain-grid {
		grid-template-columns: 1fr;
	}

	.testimonials-grid {
		grid-template-columns: 1fr;
	}

	.feature-media {
		min-height: 290px;
	}

	.feature-media img {
		min-height: 290px;
	}

	.footer-hashtags {
		font-size: 0.78rem;
	}

	.contact-mini-form {
		margin-top: 1rem;
	}

	.support-map-embed iframe {
		min-height: 300px;
	}

	.footer-contact-line {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-social-inline {
		flex-direction: column;
		align-items: flex-start;
	}

	.to-top-btn {
		right: 0.75rem;
		bottom: 0.75rem;
		width: 2.4rem;
		height: 2.4rem;
		font-size: 1rem;
	}
}

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

	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}

	.reveal {
		opacity: 1;
		transform: none;
	}
}
