:root {
	--color-primary: #2d3b54;
	--color-secondary: #af5b44;
	--color-tertiary: #e3c1a1;
	--color-quaternary: #fcd8af;
	--color-accent: #af7644;
	--color-white: #ffffff;
	--color-gray-light: #f9fafb;
	--color-gray: #6c757d;
	--color-dark: #252129;

	--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-white);
	overflow-x: hidden;
}

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

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

.section-pad {
	padding: 6rem 0;
}

.section-pad-sm {
	padding: 4rem 0;
}

h1,
h2,
h3,
h4 {
	font-weight: 600;
	line-height: 1.2;
}

h1 {
	font-size: clamp(2.2rem, 5vw, 3.8rem);
}
h2 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}
h3 {
	font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.text-primary-vimra {
	color: var(--color-primary);
}
.text-secondary-vimra {
	color: var(--color-secondary);
}
.bg-mint {
	background-color: var(--color-tertiary);
}
.bg-amethyst {
	background-color: var(--color-primary);
}
.bg-gray-soft {
	background-color: var(--color-gray-light);
}

.btn-vimra-main {
	display: inline-block;
	background: var(--color-secondary);
	color: var(--color-white);
	border: none;
	border-radius: 50px;
	padding: 0.85rem 2.4rem;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	cursor: pointer;
	transition: var(--transition);
	box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.08);
}

.btn-vimra-main:hover {
	background: #389e7b;
	color: var(--color-white);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(68, 175, 139, 0.3);
}

.btn-vimra-outline {
	display: inline-block;
	background: transparent;
	color: var(--color-secondary);
	border: 1.5px solid var(--color-secondary);
	border-radius: 50px;
	padding: 0.85rem 2.4rem;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
}

.btn-vimra-outline:hover {
	background: var(--color-secondary);
	color: var(--color-white);
}

.btn-vimra-dark {
	display: inline-block;
	background: var(--color-primary);
	color: var(--color-tertiary);
	border: none;
	border-radius: 50px;
	padding: 0.85rem 2.4rem;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
}

.btn-vimra-dark:hover {
	background: #2e2040;
	color: var(--color-tertiary);
	transform: translateY(-2px);
}

/* ==================== NAVBAR ==================== */

.navbar-vimra {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(255, 255, 255, 0.97);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(68, 175, 139, 0.12);
	z-index: 1000;
	padding: 0.9rem 0;
	box-shadow: 0 2px 16px rgba(62, 45, 84, 0.06);
	transition: var(--transition);
}

.navbar-vimra .navbar-brand {
	font-size: 30px;
}

.navbar-vimra .nav-link {
	color: var(--color-primary);
	font-weight: 400;
	font-size: 0.95rem;
	padding: 0.4rem 0.9rem;
	transition: var(--transition);
	position: relative;
}

.navbar-vimra .nav-link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0.9rem;
	right: 0.9rem;
	height: 1.5px;
	background: var(--color-secondary);
	transform: scaleX(0);
	transition: transform 0.3s ease;
}

.navbar-vimra .nav-link:hover::after,
.navbar-vimra .nav-link.active::after {
	transform: scaleX(1);
}

.navbar-vimra .nav-link:hover,
.navbar-vimra .nav-link.active {
	color: var(--color-secondary);
}

.navbar-toggler {
	border: none;
	padding: 0.4rem;
}

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

/* ==================== HERO ==================== */

.hero-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 7rem 0 4rem;
	background: linear-gradient(
		135deg,
		rgba(161, 227, 183, 0.08) 0%,
		rgba(252, 252, 175, 0.06) 60%,
		rgba(62, 45, 84, 0.04) 100%
	);
	position: relative;
	overflow: hidden;
}

.hero-section::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 600px;
	height: 600px;
	background: radial-gradient(
		circle,
		rgba(161, 227, 183, 0.12) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-section::after {
	content: '';
	position: absolute;
	bottom: -50px;
	left: -50px;
	width: 400px;
	height: 400px;
	background: radial-gradient(
		circle,
		rgba(252, 252, 175, 0.1) 0%,
		transparent 70%
	);
	pointer-events: none;
}

.hero-label {
	display: inline-block;
	background: rgba(68, 175, 139, 0.1);
	color: var(--color-secondary);
	border: 1px solid rgba(68, 175, 139, 0.25);
	border-radius: 50px;
	padding: 0.35rem 1.1rem;
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1.5rem;
}

.hero-title {
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1.5rem;
}

.hero-title span {
	color: var(--color-secondary);
}

.hero-subtitle {
	font-size: 1.15rem;
	color: var(--color-gray);
	font-weight: 300;
	max-width: 520px;
	margin-bottom: 2.5rem;
	line-height: 1.8;
}

.hero-stats {
	display: flex;
	gap: 2.5rem;
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid rgba(62, 45, 84, 0.1);
}

.hero-stat-num {
	font-size: 2rem;
	font-weight: 600;
	color: var(--color-primary);
	display: block;
	line-height: 1;
}

.hero-stat-label {
	font-size: 0.82rem;
	color: var(--color-gray);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 0.3rem;
}

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

.hero-img-fluid {
	width: 100%;
	height: auto;
	clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
	border-radius: 4px 4px 0 4px;
	box-shadow: 0 30px 80px rgba(62, 45, 84, 0.2);
}

.hero-badge {
	position: absolute;
	bottom: -20px;
	left: -20px;
	background: var(--color-white);
	border-radius: 16px;
	padding: 1rem 1.4rem;
	box-shadow: 0 8px 32px rgba(62, 45, 84, 0.15);
	display: flex;
	align-items: center;
	gap: 0.8rem;
	min-width: 200px;
}

.hero-badge i {
	font-size: 1.4rem;
	color: var(--color-secondary);
}

.hero-badge-text strong {
	display: block;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--color-primary);
	line-height: 1.2;
}

.hero-badge-text span {
	font-size: 0.78rem;
	color: var(--color-gray);
}

/* ==================== SENSORI DI VITA ==================== */

.features-section {
	background: var(--color-gray-light);
}

.section-eyebrow {
	display: inline-block;
	color: var(--color-secondary);
	font-size: 0.85rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	margin-bottom: 0.75rem;
}

.section-title {
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.section-lead {
	color: var(--color-gray);
	font-weight: 300;
	font-size: 1.08rem;
	max-width: 560px;
}

.icon-feature {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 72px;
	height: 72px;
	margin-bottom: 1.5rem;
}

.icon-feature::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px dashed rgba(68, 175, 139, 0.4);
}

.icon-feature::after {
	content: '';
	position: absolute;
	inset: 10px;
	border-radius: 50%;
	background: var(--color-quaternary);
	opacity: 0.7;
}

.icon-feature i {
	position: relative;
	z-index: 1;
	font-size: 1.6rem;
	color: var(--color-secondary);
}

.feature-card {
	padding: 2rem 1.5rem;
	border-left: 2px solid transparent;
	transition: var(--transition);
}

.feature-card:hover {
	border-left-color: var(--color-secondary);
	background: var(--color-white);
	border-radius: 0 12px 12px 0;
}

.feature-card h4 {
	font-size: 1.15rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.6rem;
}

.feature-card p {
	font-size: 0.95rem;
	color: var(--color-gray);
	font-weight: 300;
	line-height: 1.7;
}

/* ==================== ATMOSFERE ==================== */

.atmosfere-section {
	background: var(--color-white);
}

.atmosfera-item {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
	align-items: center;
	margin-bottom: 5rem;
}

.atmosfera-item:last-child {
	margin-bottom: 0;
}

.atmosfera-item.reverse {
	direction: rtl;
}

.atmosfera-item.reverse > * {
	direction: ltr;
}

.atmosfera-img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(62, 45, 84, 0.1);
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.atmosfera-img:hover {
	transform: translateY(-4px);
	box-shadow: 0 30px 80px rgba(62, 45, 84, 0.15);
}

.atmosfera-label {
	display: inline-block;
	background: rgba(68, 175, 139, 0.1);
	color: var(--color-secondary);
	border-radius: 4px;
	padding: 0.25rem 0.8rem;
	font-size: 0.8rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	margin-bottom: 1rem;
}

.atmosfera-title {
	font-size: 1.6rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.atmosfera-text {
	color: var(--color-gray);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.atmosfera-tag {
	display: inline-block;
	border: 1px solid rgba(62, 45, 84, 0.2);
	border-radius: 50px;
	padding: 0.3rem 0.9rem;
	font-size: 0.82rem;
	color: var(--color-primary);
	margin-right: 0.4rem;
	margin-bottom: 0.4rem;
}

/* ==================== FILOSOFIA ==================== */

.philosophy-section {
	background: var(--color-tertiary);
	overflow: hidden;
}

.philosophy-text {
	font-size: clamp(1.6rem, 3vw, 2.6rem);
	font-weight: 300;
	color: var(--color-primary);
	text-align: right;
	line-height: 1.5;
}

.philosophy-text strong {
	font-weight: 600;
	display: block;
}

.philosophy-quote {
	border-right: 4px solid var(--color-primary);
	padding-right: 2rem;
}

.philosophy-aside {
	font-size: 0.9rem;
	color: rgba(62, 45, 84, 0.65);
	text-transform: uppercase;
	letter-spacing: 0.1em;
	writing-mode: vertical-rl;
	transform: rotate(180deg);
	align-self: flex-start;
}

/* ==================== PROCESS ==================== */

.process-section {
	background: var(--color-white);
}

.process-img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	box-shadow: 0 20px 60px rgba(62, 45, 84, 0.12);
}

.process-step {
	padding: 1.5rem;
	border-bottom: 1px solid rgba(62, 45, 84, 0.08);
	display: flex;
	align-items: flex-start;
	gap: 1.5rem;
}

.process-step:last-child {
	border-bottom: none;
}

.process-step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	min-width: 48px;
	background: rgba(68, 175, 139, 0.1);
	border-radius: 50%;
	color: var(--color-secondary);
	font-size: 1.2rem;
}

.process-step-verb {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-primary);
	display: block;
	margin-bottom: 0.3rem;
}

.process-step p {
	font-size: 0.93rem;
	color: var(--color-gray);
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}

/* ==================== FORM ==================== */

.form-section {
	background: var(--color-gray-light);
}

.form-card {
	background: var(--color-white);
	border-radius: 20px;
	padding: 3rem;
	box-shadow: 0 8px 40px rgba(62, 45, 84, 0.08);
}

.form-label-vimra {
	font-size: 0.88rem;
	font-weight: 500;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	display: block;
}

.form-control-vimra {
	width: 100%;
	background: var(--color-gray-light);
	border: 1.5px solid transparent;
	border-radius: 50px;
	padding: 0.85rem 1.4rem;
	font-family: var(--font-primary);
	font-size: 0.95rem;
	color: var(--color-dark);
	transition: var(--transition);
	outline: none;
	appearance: none;
}

.form-control-vimra:focus {
	border-color: var(--color-secondary);
	background: var(--color-white);
	box-shadow: 0 0 0 4px rgba(68, 175, 139, 0.1);
}

.form-control-vimra::placeholder {
	color: rgba(108, 117, 125, 0.6);
}

.form-group-vimra {
	margin-bottom: 1.4rem;
}

.field-error {
	display: block;
	color: #dc3545;
	font-size: 0.8rem;
	margin-top: 0.4rem;
	padding-left: 1rem;
}

.form-visual img {
	width: 100%;
	height: auto;
	border-radius: 16px;
	box-shadow: 0 20px 60px rgba(62, 45, 84, 0.12);
}

.form-intro-label {
	background: rgba(68, 175, 139, 0.1);
	color: var(--color-secondary);
	border-radius: 8px;
	padding: 0.6rem 1rem;
	font-size: 0.88rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 1.5rem;
}

/* ==================== TRUST STRIP ==================== */

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

.trust-item {
	text-align: center;
	color: var(--color-white);
}

.trust-item i {
	font-size: 1.8rem;
	color: var(--color-tertiary);
	margin-bottom: 0.75rem;
}

.trust-item strong {
	display: block;
	font-size: 1.05rem;
	font-weight: 600;
}

.trust-item span {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.6);
	font-weight: 300;
}

/* ==================== FOOTER ==================== */

.footer-main {
	background: #2a1e3a;
	color: var(--color-white);
	padding: 5rem 0 2rem;
}

.footer-brand img {
	height: 34px;
	width: auto;
	margin-bottom: 1.2rem;
	filter: brightness(0) invert(1);
}

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

.footer-heading {
	font-size: 0.8rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--color-tertiary);
	margin-bottom: 1.2rem;
}

.footer-links {
	list-style: none;
}

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

.footer-links a {
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9rem;
	font-weight: 300;
	transition: var(--transition);
}

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

.footer-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.8rem;
	margin-bottom: 0.8rem;
	color: rgba(255, 255, 255, 0.55);
	font-size: 0.9rem;
	font-weight: 300;
}

.footer-contact-item i {
	color: var(--color-secondary);
	font-size: 1rem;
	margin-top: 2px;
	min-width: 16px;
}

.footer-contact-item a {
	color: rgba(255, 255, 255, 0.55);
}

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

.footer-divider {
	border-color: rgba(255, 255, 255, 0.08);
	margin: 3rem 0 1.5rem;
}

.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
}

.footer-copy {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.35);
}

.footer-legal {
	display: flex;
	gap: 1.5rem;
	flex-wrap: wrap;
}

.footer-legal a {
	font-size: 0.82rem;
	color: rgba(255, 255, 255, 0.35);
	transition: var(--transition);
}

.footer-legal a:hover {
	color: var(--color-tertiary);
}

/* ==================== COOKIE BANNER ==================== */

#cookieNotice {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9999;
	background: var(--color-primary);
	color: var(--color-white);
	padding: 1.25rem 0;
	border-top: 2px solid var(--color-secondary);
	transition:
		transform 0.3s ease,
		opacity 0.3s ease;
	opacity: 0;
	transform: translateY(100%);
}

#cookieNotice.show {
	opacity: 1;
	transform: translateY(0);
}

#cookieNotice.hide {
	opacity: 0;
	transform: translateY(100%);
}

.cookie-text {
	font-size: 0.88rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	font-weight: 300;
}

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

#acceptAllBtn,
#declineAllBtn {
	border-radius: 50px;
	padding: 0.55rem 1.4rem;
	font-family: var(--font-primary);
	font-size: 0.88rem;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
	border: none;
}

#acceptAllBtn {
	background: var(--color-secondary);
	color: var(--color-white);
}

#acceptAllBtn:hover {
	background: #389e7b;
}

#declineAllBtn {
	background: transparent;
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

#declineAllBtn:hover {
	background: rgba(255, 255, 255, 0.08);
	color: var(--color-white);
}

/* ==================== INNER PAGE HERO ==================== */

.page-hero {
	padding: 9rem 0 5rem;
	background: linear-gradient(
		135deg,
		rgba(161, 227, 183, 0.1) 0%,
		rgba(62, 45, 84, 0.04) 100%
	);
	text-align: center;
}

.page-hero h1 {
	color: var(--color-primary);
	margin-bottom: 1rem;
}

.page-hero p {
	color: var(--color-gray);
	font-size: 1.1rem;
	font-weight: 300;
	max-width: 560px;
	margin: 0 auto;
}

.breadcrumb-vimra {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-size: 0.85rem;
	color: var(--color-gray);
	margin-bottom: 1.5rem;
}

.breadcrumb-vimra a {
	color: var(--color-secondary);
}

.breadcrumb-vimra span {
	color: rgba(108, 117, 125, 0.5);
}

/* ==================== CHI SIAMO ==================== */

.dna-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1.5rem;
}

.dna-card {
	background: var(--color-gray-light);
	border-radius: 12px;
	padding: 2.5rem 2rem;
	text-align: center;
	transition: var(--transition);
	border: 1px solid transparent;
}

.dna-card:hover {
	border-color: rgba(68, 175, 139, 0.3);
	background: var(--color-white);
	box-shadow: 0 8px 32px rgba(62, 45, 84, 0.08);
}

.dna-card i {
	font-size: 2rem;
	color: var(--color-secondary);
	margin-bottom: 1rem;
}

.dna-card h4 {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
}

.dna-card p {
	font-size: 0.88rem;
	color: var(--color-gray);
	font-weight: 300;
	margin: 0;
}

.linen-block {
	background: #f7f4ee;
	border-top: 1px solid rgba(62, 45, 84, 0.08);
	border-bottom: 1px solid rgba(62, 45, 84, 0.08);
}

/* ==================== CONTACT PAGE ==================== */

.contact-info-card {
	background: var(--color-white);
	border: 1px solid rgba(62, 45, 84, 0.1);
	border-radius: 16px;
	padding: 2rem;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	padding: 1.2rem 0;
	border-bottom: 1px solid rgba(62, 45, 84, 0.07);
}

.contact-info-item:last-child {
	border-bottom: none;
}

.contact-icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: rgba(68, 175, 139, 0.1);
	border-radius: 50%;
	color: var(--color-secondary);
	font-size: 1.1rem;
}

.contact-info-label {
	font-size: 0.78rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-gray);
	display: block;
	margin-bottom: 0.2rem;
}

.contact-info-value {
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--color-primary);
}

.contact-info-value a {
	color: var(--color-primary);
}

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

/* ==================== LEGAL PAGES ==================== */

.legal-content {
	max-width: 800px;
}

.legal-content h2 {
	font-size: 1.4rem;
	color: var(--color-primary);
	margin-top: 2.5rem;
	margin-bottom: 1rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid rgba(62, 45, 84, 0.1);
}

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

.legal-content p,
.legal-content li {
	font-size: 0.95rem;
	color: var(--color-gray);
	font-weight: 300;
	line-height: 1.8;
	margin-bottom: 0.8rem;
}

.legal-content ul {
	padding-left: 1.2rem;
}

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

.legal-content strong {
	color: var(--color-primary);
	font-weight: 500;
}

/* ==================== THANKS PAGE ==================== */

.thanks-section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(
		135deg,
		rgba(161, 227, 183, 0.1) 0%,
		rgba(252, 252, 175, 0.08) 100%
	);
}

.thanks-card {
	background: var(--color-white);
	border-radius: 24px;
	padding: 4rem 3.5rem;
	text-align: center;
	max-width: 520px;
	width: 100%;
	box-shadow: 0 20px 80px rgba(62, 45, 84, 0.1);
}

.thanks-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	background: rgba(68, 175, 139, 0.12);
	border-radius: 50%;
	margin: 0 auto 2rem;
}

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

/* ==================== SERVICES PAGE ==================== */

.service-detail-card {
	background: var(--color-white);
	border-radius: 16px;
	padding: 2.5rem;
	border: 1px solid rgba(62, 45, 84, 0.08);
	transition: var(--transition);
	height: 100%;
}

.service-detail-card:hover {
	border-color: rgba(68, 175, 139, 0.3);
	box-shadow: 0 12px 40px rgba(62, 45, 84, 0.08);
	transform: translateY(-3px);
}

.service-detail-card i {
	font-size: 2rem;
	color: var(--color-secondary);
	margin-bottom: 1.2rem;
}

.service-detail-card h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: var(--color-primary);
	margin-bottom: 0.8rem;
}

.service-detail-card p {
	font-size: 0.92rem;
	color: var(--color-gray);
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}

.service-list {
	list-style: none;
	padding: 0;
	margin-top: 1rem;
}

.service-list li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-size: 0.9rem;
	color: var(--color-gray);
	padding: 0.4rem 0;
}

.service-list li i {
	font-size: 0.85rem;
	color: var(--color-secondary);
}

/* ==================== FAQ (ACCORDION) ==================== */

.accordion-item-vimra {
	border: 1px solid rgba(62, 45, 84, 0.1);
	border-radius: 12px;
	margin-bottom: 0.8rem;
	overflow: hidden;
}

.accordion-trigger {
	width: 100%;
	background: var(--color-white);
	border: none;
	padding: 1.4rem 1.8rem;
	text-align: left;
	font-family: var(--font-primary);
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-primary);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: var(--transition);
}

.accordion-trigger i {
	font-size: 0.85rem;
	color: var(--color-secondary);
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.accordion-item-vimra.active .accordion-trigger i {
	transform: rotate(180deg);
}

.accordion-item-vimra.active .accordion-trigger {
	background: rgba(68, 175, 139, 0.05);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.35s ease,
		padding 0.3s ease;
	padding: 0 1.8rem;
}

.accordion-content.active {
	max-height: 300px;
	padding: 0 1.8rem 1.4rem;
}

.accordion-content p {
	font-size: 0.93rem;
	color: var(--color-gray);
	font-weight: 300;
	line-height: 1.7;
	margin: 0;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 991px) {
	.hero-section {
		padding-top: 8rem;
		text-align: center;
	}

	.hero-subtitle {
		margin-left: auto;
		margin-right: auto;
	}

	.hero-stats {
		justify-content: center;
	}

	.hero-visual-wrap {
		margin-top: 3rem;
	}

	.hero-badge {
		left: 50%;
		transform: translateX(-50%);
		bottom: -30px;
	}

	.atmosfera-item {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.atmosfera-item.reverse {
		direction: ltr;
	}

	.philosophy-text {
		text-align: center;
	}

	.philosophy-quote {
		border-right: none;
		border-left: 4px solid var(--color-primary);
		padding-right: 0;
		padding-left: 1.5rem;
		text-align: left;
	}

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

@media (max-width: 767px) {
	/* .section-pad {
		padding: 4rem 0;
	} */

	.hero-stats {
		gap: 1.5rem;
		flex-wrap: wrap;
		justify-content: center;
	}

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

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

	.thanks-card {
		padding: 2.5rem 1.5rem;
	}

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

	.footer-legal {
		justify-content: center;
	}

	.cookie-text {
		font-size: 0.82rem;
	}

	.philosophy-aside {
		display: none;
	}
}

@media (max-width: 480px) {
	#acceptAllBtn,
	#declineAllBtn {
		width: 100%;
	}
}
