:root {
	--color-primary: #312809;
	--color-secondary: #774c27;
	--color-tertiary: #d0ac5d;
	--color-quaternary: #cdbf97;
	--color-accent: #ffe9d7;
	--color-white: #ffffff;
	--color-gray-light: #f9faff;
	--color-gray: #6c757d;
	--color-dark: #292521;
	--font-primary: 'Outfit', sans-serif;
	--transition: all 0.3s ease;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-primary);
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--color-dark);
	background: var(--color-gray-light);
	font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 700;
	line-height: 1.2;
}

a {
	color: var(--color-tertiary);
	text-decoration: none;
	transition: var(--transition);
}

a:hover {
	color: var(--color-quaternary);
}

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

.btn-elvia {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background: var(--color-secondary);
	color: var(--color-accent);
	border: 1px solid var(--color-tertiary);
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.btn-elvia:hover {
	background: var(--color-tertiary);
	color: var(--color-white);
	border-color: var(--color-tertiary);
}

.btn-elvia-outline {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.875rem 2rem;
	background: transparent;
	color: var(--color-accent);
	border: 1px solid rgba(215, 225, 255, 0.3);
	font-family: var(--font-primary);
	font-weight: 500;
	font-size: 0.9375rem;
	letter-spacing: 0.05em;
	cursor: pointer;
	transition: var(--transition);
	text-decoration: none;
}

.btn-elvia-outline:hover {
	background: rgba(139, 93, 208, 0.15);
	border-color: var(--color-tertiary);
	color: var(--color-white);
}

.section-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-tertiary);
	margin-bottom: 1rem;
}

.section-label::before {
	content: '';
	display: inline-block;
	width: 24px;
	height: 1px;
	background: var(--color-tertiary);
	margin-right: 0.5rem;
	vertical-align: middle;
}

.text-accent {
	color: var(--color-tertiary);
}
.text-mist {
	color: var(--color-accent);
}
.text-quaternary {
	color: var(--color-quaternary);
}
.bg-dark-space {
	background: var(--color-primary);
}
.bg-ether {
	background: var(--color-gray-light);
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar.navbar-elvia {
	padding: 1rem 0;
	background: rgba(18, 9, 49, 0.99);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(139, 93, 208, 0.15);
	transition: var(--transition);
}

.navbar.navbar-elvia.scrolled {
	padding: 0.7rem 0;
	background: rgba(18, 9, 49, 0.99);
	border-bottom-color: rgba(139, 93, 208, 0.3);
}

.navbar.navbar-elvia .navbar-brand {
	font-size: 30px;
	color: white;
}

.navbar.navbar-elvia .nav-link {
	color: rgba(215, 225, 255, 0.75) !important;
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	padding: 0.4rem 1rem !important;
	transition: var(--transition);
}

.navbar.navbar-elvia .nav-link:hover,
.navbar.navbar-elvia .nav-link.active {
	color: var(--color-accent) !important;
}

.navbar.navbar-elvia .nav-cta {
	padding: 0.45rem 1.25rem !important;
	border: 1px solid rgba(139, 93, 208, 0.5);
	color: var(--color-accent) !important;
}

.navbar.navbar-elvia .nav-cta:hover {
	background: rgba(139, 93, 208, 0.2);
	border-color: var(--color-tertiary);
}

.navbar.navbar-elvia .navbar-collapse {
	background: transparent;
}

@media (max-width: 991px) {
	.navbar.navbar-elvia .navbar-collapse {
		background: rgba(12, 5, 32, 0.98);
		border-top: 1px solid rgba(139, 93, 208, 0.15);
		margin: 0 -12px;
		padding: 0.75rem 1.5rem 1.25rem;
	}

	.navbar.navbar-elvia .nav-link {
		padding: 0.6rem 0 !important;
		border-bottom: 1px solid rgba(139, 93, 208, 0.08);
	}

	.navbar.navbar-elvia .nav-cta {
		margin-top: 0.75rem;
		display: inline-block;
		border: 1px solid rgba(139, 93, 208, 0.5) !important;
	}
}

.navbar-toggler {
	border: 1px solid rgba(139, 93, 208, 0.4);
	padding: 0.35rem 0.6rem;
	box-shadow: none !important;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-toggler-icon {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(215,225,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── HERO ────────────────────────────────────────── */
.hero-elvia {
	background: var(--color-primary);
	display: flex;
	align-items: center;
}

.hero-vertical-tag {
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: rgba(139, 93, 208, 0.6);
	text-transform: uppercase;
	user-select: none;
}

.hero-visual-col {
	position: relative;
}

.hero-visual-col img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-left: 2px solid rgba(139, 93, 208, 0.3);
}

.hero-visual-col::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to right,
		var(--color-primary) 0%,
		transparent 25%,
		transparent 75%,
		var(--color-primary) 100%
	);
	pointer-events: none;
	z-index: 1;
}

.hero-content-col {
	position: relative;
	z-index: 2;
}

.hero-elvia h1 {
	font-size: clamp(2.25rem, 5vw, 3.75rem);
	font-weight: 700;
	color: var(--color-accent);
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.hero-elvia h1 em {
	font-style: normal;
	color: var(--color-tertiary);
}

.hero-elvia .hero-sub {
	font-size: 1.0625rem;
	color: rgba(215, 225, 255, 0.7);
	max-width: 480px;
	margin-bottom: 2.5rem;
	font-weight: 300;
	line-height: 1.8;
}

.hero-line {
	width: 1px;
	height: 80px;
	background: linear-gradient(to bottom, var(--color-tertiary), transparent);
	margin: 0 auto 0.75rem;
}

.hero-scroll {
	text-align: center;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	color: rgba(139, 93, 208, 0.6);
	text-transform: uppercase;
}

/* ── MANIFESTO ───────────────────────────────────── */
.manifesto-section {
	background: var(--color-primary);
	padding: 6rem 0;
	border-top: 1px solid rgba(139, 93, 208, 0.1);
	border-bottom: 1px solid rgba(139, 93, 208, 0.1);
}

.manifesto-headline {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	color: var(--color-accent);
	font-weight: 700;
	text-align: center;
	margin-bottom: 1rem;
}

.manifesto-sub {
	text-align: center;
	color: rgba(203, 151, 205, 0.8);
	font-size: 1rem;
	margin-bottom: 4rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.manifesto-col {
	padding-left: 2rem;
	border-left: 1px solid rgba(139, 93, 208, 0.25);
}

.manifesto-col h4 {
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-tertiary);
	margin-bottom: 1rem;
}

.manifesto-col p {
	font-size: 0.9375rem;
	color: rgba(215, 225, 255, 0.6);
	line-height: 1.85;
	font-weight: 300;
}

/* ── FEATURES / NODES ────────────────────────────── */
.features-section {
	background: linear-gradient(180deg, var(--color-primary) 0%, #1a0d40 100%);
	padding: 6rem 0;
}

.feature-node {
	text-align: center;
	padding: 2.5rem 1.5rem;
	position: relative;
	transition: var(--transition);
}

.feature-node:hover .feature-icon-wrap {
	box-shadow:
		0 0 40px rgba(139, 93, 208, 0.4),
		0 0 80px rgba(139, 93, 208, 0.15);
}

.feature-icon-wrap {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1px solid rgba(139, 93, 208, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1.5rem;
	background: rgba(139, 93, 208, 0.08);
	box-shadow: 0 0 20px rgba(139, 93, 208, 0.15);
	transition: all 0.5s ease;
}

.feature-icon-wrap i {
	font-size: 1.75rem;
	color: var(--color-tertiary);
}

.feature-node h5 {
	font-size: 0.9375rem;
	font-weight: 500;
	color: var(--color-accent);
	margin-bottom: 0.625rem;
	letter-spacing: 0.03em;
}

.feature-node p {
	font-size: 0.875rem;
	color: rgba(215, 225, 255, 0.5);
	font-weight: 300;
	line-height: 1.7;
}

/* ── GALLERY CIRCLES ─────────────────────────────── */
.gallery-section {
	background: var(--color-primary);
	padding: 5rem 0 6rem;
	overflow: hidden;
}

.gallery-circles-row {
	display: flex;
	align-items: center;
	gap: 2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.gallery-circle {
	position: relative;
	border-radius: 50%;
	overflow: hidden;
	border: 2px solid rgba(139, 93, 208, 0.3);
	flex-shrink: 0;
	transition: var(--transition);
}

.gallery-circle:hover {
	border-color: var(--color-tertiary);
	box-shadow: 0 0 30px rgba(139, 93, 208, 0.25);
}

.gallery-circle img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	transition: transform 0.6s ease;
}

.gallery-circle:hover img {
	transform: scale(1.05);
}

.gallery-circle-lg {
	width: 320px;
	height: 320px;
}
.gallery-circle-md {
	width: 240px;
	height: 240px;
	margin-top: 60px;
}
.gallery-circle-sm {
	width: 180px;
	height: 180px;
}

.gallery-caption {
	margin-top: 1.25rem;
	text-align: center;
}

.gallery-caption span {
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(139, 93, 208, 0.7);
}

/* ── METHODOLOGY ─────────────────────────────────── */
.methodology-section {
	background: #0e0724;
	padding: 6rem 0;
	position: relative;
}

.methodology-section .bg-img {
	position: absolute;
	inset: 0;
	overflow: hidden;
	opacity: 0.07;
}

.methodology-section .bg-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.methodology-inner {
	position: relative;
	z-index: 2;
}

.methodology-line {
	height: 1px;
	background: linear-gradient(
		to right,
		transparent,
		rgba(139, 93, 208, 0.6),
		transparent
	);
	margin: 2.5rem 0;
	position: relative;
}

.methodology-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1px;
	position: relative;
}

.methodology-step {
	padding: 2rem 2.5rem;
	position: relative;
}

.methodology-step::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 100%;
	background: rgba(139, 93, 208, 0.2);
}

.methodology-step:first-child::before {
	display: none;
}

.step-number {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: rgba(139, 93, 208, 0.5);
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.step-title {
	font-size: 1.375rem;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 1rem;
}

.step-desc {
	font-size: 0.9rem;
	color: rgba(215, 225, 255, 0.55);
	line-height: 1.8;
	font-weight: 300;
}

/* ── MINI ABOUT ──────────────────────────────────── */
.mini-about-section {
	background: var(--color-primary);
	padding: 5rem 0;
	border-top: 1px solid rgba(139, 93, 208, 0.1);
}

.mini-about-img {
	position: relative;
}

.mini-about-img img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border: 1px solid rgba(139, 93, 208, 0.25);
}

.mini-about-img::after {
	content: '';
	position: absolute;
	bottom: -12px;
	right: -12px;
	width: 60%;
	height: 60%;
	border-right: 1px solid rgba(139, 93, 208, 0.3);
	border-bottom: 1px solid rgba(139, 93, 208, 0.3);
	pointer-events: none;
}

.mini-about-text h2 {
	font-size: clamp(1.625rem, 3.5vw, 2.5rem);
	color: var(--color-accent);
	margin-bottom: 1.5rem;
}

.mini-about-text p {
	font-size: 0.9375rem;
	color: rgba(215, 225, 255, 0.6);
	line-height: 1.85;
	margin-bottom: 1.25rem;
	font-weight: 300;
}

/* ── FORM SECTION ────────────────────────────────── */
.form-section {
	background: var(--color-gray-light);
	padding: 6rem 0;
}

.form-section-title {
	font-size: clamp(1.625rem, 3.5vw, 2.5rem);
	color: var(--color-secondary);
	margin-bottom: 0.75rem;
}

.form-section-sub {
	font-size: 1rem;
	color: var(--color-gray);
	margin-bottom: 2.5rem;
	font-weight: 300;
}

.form-photo {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-left: 3px solid var(--color-secondary);
}

.elvia-form .form-group {
	margin-bottom: 1.75rem;
}

.elvia-form label {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-secondary);
	margin-bottom: 0.5rem;
}

.elvia-form input {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(65, 39, 119, 0.4);
	padding: 0.625rem 0;
	font-family: var(--font-primary);
	font-size: 1rem;
	color: var(--color-dark);
	outline: none;
	transition: var(--transition);
	font-weight: 300;
}

.elvia-form input:focus {
	border-bottom-color: var(--color-secondary);
}

.elvia-form input::placeholder {
	color: rgba(108, 117, 125, 0.5);
	font-weight: 300;
}

.form-error {
	display: block;
	font-size: 0.8rem;
	color: #c0392b;
	margin-top: 0.35rem;
	min-height: 1rem;
}

.elvia-form .btn-submit {
	width: 100%;
	padding: 1rem;
	background: var(--color-secondary);
	color: var(--color-accent);
	border: none;
	font-family: var(--font-primary);
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	cursor: pointer;
	transition: var(--transition);
}

.elvia-form .btn-submit:hover {
	background: var(--color-tertiary);
}

/* ── FAQ ─────────────────────────────────────────── */
.faq-section {
	background: var(--color-primary);
	padding: 6rem 0;
}

.faq-section h2 {
	font-size: clamp(1.625rem, 3.5vw, 2.25rem);
	color: var(--color-accent);
	margin-bottom: 3rem;
	text-align: center;
}

.faq-item {
	border-bottom: 1px solid rgba(139, 93, 208, 0.2);
	margin-bottom: 0;
}

.faq-question {
	padding: 1.375rem 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-accent);
	transition: var(--transition);
}

.faq-question:hover {
	color: var(--color-quaternary);
}

.faq-question i {
	color: var(--color-tertiary);
	font-size: 0.875rem;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
	transform: rotate(45deg);
}

.faq-answer {
	overflow: hidden;
	font-size: 0.9375rem;
	color: rgba(215, 225, 255, 0.55);
	line-height: 1.85;
	font-weight: 300;
	transition: max-height 0.35s ease;
}

.faq-answer.active {
	max-height: 300px;
	padding-bottom: 1.375rem;
}

/* ── FOOTER ──────────────────────────────────────── */
footer.elvia-footer {
	background: #0a0519;
	padding: 4rem 0 2rem;
	border-top: 1px solid rgba(139, 93, 208, 0.15);
}

.footer-logo img {
	height: 32px;
	width: auto;
	margin-bottom: 1rem;
	opacity: 0.85;
}

.footer-tagline {
	font-size: 0.875rem;
	color: rgba(215, 225, 255, 0.4);
	font-weight: 300;
	line-height: 1.7;
	max-width: 280px;
}

.footer-heading {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-tertiary);
	margin-bottom: 1.25rem;
}

.footer-links {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links li {
	margin-bottom: 0.5rem;
}

.footer-links a {
	font-size: 0.875rem;
	color: rgba(215, 225, 255, 0.45);
	text-decoration: none;
	transition: var(--transition);
	font-weight: 300;
}

.footer-links a:hover {
	color: var(--color-accent);
	padding-left: 4px;
}

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin-bottom: 0.875rem;
	font-size: 0.875rem;
	color: rgba(215, 225, 255, 0.45);
	font-weight: 300;
}

.footer-contact-item i {
	color: var(--color-tertiary);
	font-size: 0.875rem;
	margin-top: 0.15rem;
	flex-shrink: 0;
}

.footer-contact-item a {
	color: rgba(215, 225, 255, 0.45);
	transition: var(--transition);
}

.footer-contact-item a:hover {
	color: var(--color-accent);
}

.footer-divider {
	border-color: rgba(139, 93, 208, 0.15);
	margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	font-size: 0.8125rem;
	color: rgba(215, 225, 255, 0.25);
	font-weight: 300;
}

.footer-bottom a {
	color: rgba(215, 225, 255, 0.25);
	transition: var(--transition);
}

.footer-bottom a:hover {
	color: rgba(215, 225, 255, 0.55);
}

/* ── COOKIE BANNER ───────────────────────────────── */
#cookieNotice {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: rgba(10, 5, 25, 0.97);
	border-top: 1px solid rgba(139, 93, 208, 0.3);
	padding: 1.25rem 0;
	backdrop-filter: blur(10px);
}

#cookieNotice.show {
	animation: slideUp 0.3s ease forwards;
}

#cookieNotice.hide {
	animation: slideDown 0.3s ease forwards;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

@keyframes slideDown {
	from {
		transform: translateY(0);
		opacity: 1;
	}
	to {
		transform: translateY(100%);
		opacity: 0;
	}
}

.cookie-text {
	font-size: 0.875rem;
	color: rgba(215, 225, 255, 0.6);
	font-weight: 300;
	line-height: 1.6;
}

.cookie-text a {
	color: var(--color-tertiary);
	text-decoration: underline;
}

.btn-cookie-accept {
	padding: 0.625rem 1.5rem;
	background: var(--color-secondary);
	color: var(--color-accent);
	border: none;
	font-family: var(--font-primary);
	font-size: 0.875rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
}

.btn-cookie-accept:hover {
	background: var(--color-tertiary);
}

.btn-cookie-decline {
	padding: 0.625rem 1.5rem;
	background: transparent;
	color: rgba(215, 225, 255, 0.45);
	border: 1px solid rgba(139, 93, 208, 0.25);
	font-family: var(--font-primary);
	font-size: 0.875rem;
	cursor: pointer;
	transition: var(--transition);
	white-space: nowrap;
}

.btn-cookie-decline:hover {
	border-color: rgba(139, 93, 208, 0.5);
	color: rgba(215, 225, 255, 0.7);
}

/* ── PAGE HERO ───────────────────────────────────── */
.page-hero {
	background: var(--color-primary);
	padding: 9rem 0 5rem;
	position: relative;
	overflow: hidden;
}

.page-hero::before {
	content: '';
	position: absolute;
	top: -30%;
	right: -5%;
	width: 50%;
	height: 150%;
	background: radial-gradient(
		ellipse,
		rgba(139, 93, 208, 0.1) 0%,
		transparent 60%
	);
	pointer-events: none;
}

.page-hero h1 {
	font-size: clamp(2rem, 5vw, 3.25rem);
	color: var(--color-accent);
}

.page-hero p {
	font-size: 1.0625rem;
	color: rgba(215, 225, 255, 0.6);
	font-weight: 300;
	max-width: 560px;
}

.breadcrumb-elvia {
	font-size: 0.8125rem;
	color: rgba(139, 93, 208, 0.6);
	margin-bottom: 1rem;
}

.breadcrumb-elvia a {
	color: rgba(139, 93, 208, 0.6);
	transition: var(--transition);
}

.breadcrumb-elvia a:hover {
	color: var(--color-tertiary);
}
.breadcrumb-elvia span {
	color: rgba(215, 225, 255, 0.35);
	margin: 0 0.4rem;
}

/* ── CHI SIAMO PAGE ──────────────────────────────── */
.about-about {
	background: var(--color-gray-light);
	padding: 5.5rem 0;
}

.about-about h2 {
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	color: var(--color-secondary);
	margin-bottom: 1.5rem;
}

.about-about p {
	font-size: 0.9375rem;
	color: var(--color-dark);
	line-height: 1.85;
	margin-bottom: 1.25rem;
	font-weight: 300;
}

.about-img-wrap {
	position: relative;
}

.about-img-wrap img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border: 1px solid rgba(65, 39, 119, 0.2);
}

.about-img-wrap::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	width: 40%;
	height: 40%;
	border-top: 2px solid rgba(139, 93, 208, 0.4);
	border-left: 2px solid rgba(139, 93, 208, 0.4);
	pointer-events: none;
	z-index: 1;
}

.values-section {
	background: var(--color-primary);
	padding: 5.5rem 0;
}

.values-section h2 {
	font-size: clamp(1.625rem, 3.5vw, 2.25rem);
	color: var(--color-accent);
	text-align: center;
	margin-bottom: 3.5rem;
}

.value-block {
	padding: 0 2.5rem;
	border-left: 1px solid rgba(139, 93, 208, 0.25);
}

.value-block:first-child {
	border-left: none;
	padding-left: 0;
}

.value-block h4 {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-accent);
	margin-bottom: 0.875rem;
}

.value-block p {
	font-size: 0.9rem;
	color: rgba(215, 225, 255, 0.55);
	line-height: 1.85;
	font-weight: 300;
}

.about-team-section {
	background: var(--color-gray-light);
	padding: 5rem 0;
}

.about-team-section h2 {
	font-size: clamp(1.625rem, 3.5vw, 2.25rem);
	color: var(--color-secondary);
	margin-bottom: 2.5rem;
}

.about-stat {
	padding: 2rem;
	border-top: 2px solid var(--color-secondary);
	background: var(--color-white);
}

.about-stat-number {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-secondary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.about-stat-label {
	font-size: 0.875rem;
	color: var(--color-gray);
	font-weight: 400;
}

/* ── CONTACT PAGE ────────────────────────────────── */
.contact-section {
	background: var(--color-gray-light);
	padding: 5.5rem 0;
}

.contact-info-block {
	background: var(--color-white);
	padding: 2.5rem;
	border-left: 3px solid var(--color-secondary);
	margin-bottom: 1.5rem;
}

.contact-info-block h4 {
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-tertiary);
	margin-bottom: 0.625rem;
}

.contact-info-block p,
.contact-info-block a {
	font-size: 1rem;
	color: var(--color-dark);
	font-weight: 400;
	text-decoration: none;
	transition: var(--transition);
}

.contact-info-block a:hover {
	color: var(--color-secondary);
}

.contact-form-card {
	background: var(--color-white);
	padding: 3rem;
}

.contact-form-card h3 {
	font-size: 1.375rem;
	color: var(--color-secondary);
	margin-bottom: 2rem;
}

/* ── SERVICES PAGE ───────────────────────────────── */
.services-grid-section {
	background: var(--color-gray-light);
	padding: 5.5rem 0;
}

.service-card {
	background: var(--color-white);
	padding: 2.5rem;
	border-top: 2px solid transparent;
	transition: var(--transition);
	height: 100%;
}

.service-card:hover {
	border-top-color: var(--color-secondary);
	box-shadow: 0 8px 32px rgba(65, 39, 119, 0.08);
}

.service-card-icon {
	width: 52px;
	height: 52px;
	border: 1px solid rgba(65, 39, 119, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 1.5rem;
}

.service-card-icon i {
	font-size: 1.375rem;
	color: var(--color-secondary);
}

.service-card h4 {
	font-size: 1.125rem;
	color: var(--color-secondary);
	margin-bottom: 0.875rem;
}

.service-card p {
	font-size: 0.9rem;
	color: var(--color-gray);
	line-height: 1.8;
	font-weight: 300;
}

.process-section {
	background: var(--color-primary);
	padding: 5.5rem 0;
}

.process-section h2 {
	font-size: clamp(1.625rem, 3.5vw, 2.25rem);
	color: var(--color-accent);
	margin-bottom: 3rem;
}

.process-item {
	padding: 2rem 0;
	border-bottom: 1px solid rgba(139, 93, 208, 0.15);
	display: flex;
	align-items: flex-start;
	gap: 2rem;
}

.process-num {
	font-size: 0.6875rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	color: rgba(139, 93, 208, 0.5);
	text-transform: uppercase;
	flex-shrink: 0;
	width: 32px;
	padding-top: 0.35rem;
}

.process-item h5 {
	font-size: 1rem;
	font-weight: 600;
	color: var(--color-accent);
	margin-bottom: 0.5rem;
}

.process-item p {
	font-size: 0.9rem;
	color: rgba(215, 225, 255, 0.5);
	font-weight: 300;
	line-height: 1.8;
	margin: 0;
}

/* ── THANKS PAGE ─────────────────────────────────── */
.thanks-section {
	background: var(--color-primary);
	min-height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.thanks-section::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 500px;
	height: 500px;
	background: radial-gradient(
		circle,
		rgba(139, 93, 208, 0.12) 0%,
		transparent 65%
	);
	pointer-events: none;
}

.thanks-icon {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 1px solid rgba(139, 93, 208, 0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 2rem;
}

.thanks-icon i {
	font-size: 2rem;
	color: var(--color-tertiary);
}

.thanks-section h1 {
	font-size: clamp(1.875rem, 4.5vw, 3rem);
	color: var(--color-accent);
	margin-bottom: 1rem;
}

.thanks-section p {
	font-size: 1rem;
	color: rgba(215, 225, 255, 0.6);
	font-weight: 300;
	max-width: 480px;
	margin: 0 auto 2.5rem;
	line-height: 1.8;
}

/* ── LEGAL PAGES ─────────────────────────────────── */
.legal-content {
	background: var(--color-gray-light);
	padding: 5rem 0;
}

.legal-content h2 {
	font-size: 1.375rem;
	color: var(--color-secondary);
	margin: 2.5rem 0 1rem;
	font-weight: 700;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content p,
.legal-content li {
	font-size: 0.9375rem;
	color: var(--color-dark);
	line-height: 1.85;
	font-weight: 300;
	margin-bottom: 0.875rem;
}

.legal-content ul {
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.legal-content a {
	color: var(--color-secondary);
}

.legal-update {
	font-size: 0.8125rem;
	color: var(--color-gray);
	margin-bottom: 2.5rem;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 991px) {
	.methodology-steps {
		grid-template-columns: 1fr;
	}

	.methodology-step::before {
		width: 100%;
		height: 1px;
		top: 0;
		left: 0;
	}

	.value-block {
		border-left: none;
		border-top: 1px solid rgba(139, 93, 208, 0.2);
		padding: 1.5rem 0 0;
		margin-top: 1.5rem;
	}

	.value-block:first-child {
		margin-top: 0;
		padding-top: 0;
		border-top: none;
	}

	.gallery-circle-lg {
		width: 240px;
		height: 240px;
	}
	.gallery-circle-md {
		width: 180px;
		height: 180px;
		margin-top: 30px;
	}
	.gallery-circle-sm {
		width: 140px;
		height: 140px;
	}
}

@media (max-width: 767px) {
	.hero-vertical-tag {
		display: none;
	}

	.gallery-circles-row {
		gap: 1.5rem;
	}

	.gallery-circle-lg {
		width: 200px;
		height: 200px;
	}
	.gallery-circle-md {
		width: 160px;
		height: 160px;
		margin-top: 0;
	}
	.gallery-circle-sm {
		display: none;
	}

	.manifesto-col {
		padding-left: 1.25rem;
		margin-bottom: 2rem;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.process-item {
		flex-direction: column;
		gap: 0.5rem;
	}

	.contact-form-card {
		padding: 2rem 1.5rem;
	}
}
