:root {
	--bg-body: hsl(222, 48%, 5%);
	--accent: hsl(36, 72%, 67%);
	--accent-glow: hsla(36, 72%, 67%, 0.45);
	--glass-bg: hsla(0, 0%, 100%, 0.03);
	--glass-bg-strong: hsla(0, 0%, 100%, 0.06);
	--glass-bg-hover: hsla(0, 0%, 100%, 0.08);
	--glass-border: hsla(0, 0%, 100%, 0.1);
	--glass-border-strong: hsla(0, 0%, 100%, 0.2);
	--glass-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.15);
	--solid-bg: hsla(220, 43%, 5%, 0.75);
	--pill-bg: hsla(192, 36%, 73%, 0.12);
	--pill-border: hsla(170, 46%, 75%, 0.25);
	--pill-color: hsl(165, 41%, 85%);
	--pill-hover-bg: hsla(192, 36%, 73%, 0.22);
	--pill-hover-border: hsla(170, 46%, 75%, 0.45);
	--nav-active-bg: var(--glass-bg-strong);
	--nav-active-color: var(--text-primary);
	--focus-ring: 0 0 0 3px rgba(37, 99, 235, 0.5);

	--radius-sm: 10px;
	--radius-md: 16px;
	--radius-lg: 22px;
	--radius-pill: 50px;

	--text-primary: hsl(210, 38%, 95%);
	--text-secondary: hsl(212, 26%, 80%);
	--text-info: #8a99aa;
	--font-heading: "Urbanist", sans-serif;
	--font-body: "Inter", sans-serif;
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	background: var(--bg-body) url("/assets/img/noise-bg.webp") center / auto
		repeat fixed;
	color: var(--text-primary);
	min-height: 100vh;
	line-height: 1.6;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
	transition: all 0.3s ease;
}

::selection {
	color: var(--bg-body);
	background: var(--accent);
}

:focus-visible {
	outline: none;
	box-shadow: var(--focus-ring);
	border-radius: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
	letter-spacing: -0.03em;
}

section .container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 2rem 1rem;
}

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

.hero {
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
	background-size: 50px 50px;
}

.hero-photo {
	display: none;
	width: 9.375rem;
	height: 9.375rem;
	border-radius: 50%;
	margin: 0 auto 1.75rem auto;
	border: 3px solid hsla(0, 0%, 100%, 0.3);
	box-shadow: 0 0 40px hsla(170, 35%, 67%, 0.3);
}

.hero .availability-badge {
	width: fit-content;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0 auto 1rem auto;
	padding: 0.375rem 0.75rem;
	border-radius: var(--radius-pill);
	background: hsla(143, 42%, 63%, 0.15);
	border: 1px solid hsla(142, 53%, 71%, 0.35);
	color: hsl(140, 51%, 82%);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.03em;
}

.hero .availability-dot {
	width: 0.75rem;
	height: 0.75rem;
	border-radius: 50%;
	background: hsl(153, 70%, 70%);
	box-shadow: 0 0 8px hsla(150, 59%, 67%, 0.7);
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.3;
	}
}

.hero h1 {
	font-family: var(--font-heading);
	font-size: 2.8rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	background: linear-gradient(135deg, #5b9bd5, #3a7bd5, #9b59b6, #e879a8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1rem;
	line-height: 1.1;
}

.hero .tagline-wrapper {
	display: block;
	min-height: 2rem;
	line-height: 1.6;
	margin-bottom: 1rem;
}

.hero .tagline {
	font-family: var(--font-heading);
	font-size: 1.2rem;
	color: var(--text-secondary);
	font-weight: 600;
	display: inline;
	vertical-align: middle;
}

.hero .cursor {
	display: inline-block;
	width: 0.625rem;
	height: 1.5em;
	background: var(--accent);
	margin-left: 0.25rem;
	animation: blink 0.8s infinite;
	vertical-align: middle;
	border-radius: 2px;
	position: relative;
	top: -0.05em;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
}

.hero .location {
	font-size: 0.95rem;
	color: var(--text-info);
	margin-bottom: 36px;
}

.hero .cta {
	display: flex;
	gap: 0.875rem;
	justify-content: center;
	flex-wrap: wrap;
}

/* ========== Buttons ========== */

.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 0.75rem 1.625rem;
	border-radius: var(--radius-pill);
	font-weight: 600;
	font-size: 0.95rem;
	border: 1px solid transparent;
	transition: all 0.3s;
	font-family: var(--font-body);
	letter-spacing: 0.01em;
	text-decoration: none;
	white-space: nowrap;
	position: relative;
	overflow: hidden;
}

.btn::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: inherit;
	opacity: 0;
	transition: opacity 0.3s;
	background: hsla(0, 0%, 100%, 0.08);
	pointer-events: none;
}

.btn:hover::after {
	opacity: 1;
}

.btn:active {
	transform: scale(0.96);
}

.btn-primary {
	background: linear-gradient(
		135deg,
		hsla(37, 65%, 61%, 0.85),
		hsla(37, 54%, 53%, 0.8)
	);
	border-color: hsla(38, 79%, 73%, 0.5);
	color: hsl(30, 44%, 7%);
	box-shadow: 0 6px 24px var(--accent-glow);
	font-weight: 700;
}

.btn-primary:hover {
	box-shadow: 0 8px 30px hsla(36, 72%, 67%, 0.55);
	border-color: hsla(42, 91%, 78%, 0.6);
}

.btn-outline {
	background: transparent;
	border: 2px solid var(--glass-border-strong);
	color: var(--text-primary);
}

.btn-outline:hover {
	background: var(--glass-bg);
	border-color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
	.hero-photo {
		width: 15.625rem;
		height: 15.625rem;
		box-shadow: 0 0 60px hsla(170, 35%, 67%, 0.4);
	}

	.hero h1 {
		font-size: 4.5rem;
	}

	.hero .location {
		font-size: 1.1rem;
	}

	.hero .availability-badge {
		font-size: 0.8rem;
		padding: 0.5rem 1rem;
	}
}

/* ==================== SEZIONI ==================== */

.section {
	padding: 3.75rem 0 1.875rem;
}

.section-label {
	text-transform: uppercase;
	letter-spacing: 0.09em;
	font-size: 0.7rem;
	font-weight: 600;
	color: var(--accent);
	margin-bottom: 0.5rem;
}

.section-title {
	font-family: var(--font-heading);
	font-size: 2rem;
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 1.25rem;
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.section-title .icon-dot {
	width: 0.625rem;
	height: 0.625rem;
	border-radius: 50%;
	background: linear-gradient(135deg, #7ec8e3, #c3aed6);
	box-shadow: 0 0 14px hsla(192, 36%, 73%, 0.6);
}

.section-divider {
	width: 60%;
	max-width: 600px;
	height: 1px;
	margin: 2rem auto;
	background: linear-gradient(
		90deg,
		transparent,
		#7ec8e366,
		#c8aed666,
		#f8b4c866,
		transparent
	);
	border: none;
	opacity: 0.6;
}

/* Chi sono */
.about-text {
	font-size: 1rem;
	line-height: 1.7;
	color: var(--text-secondary);
	text-align: justify;
}

.about-text strong {
	color: var(--text-primary);
	font-weight: 600;
}

.about-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.about-columns {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}
}

.badge-row {
	display: flex;
	flex-wrap: wrap;
	gap: calc(1rem + 1dvw);
	justify-content: center;
	margin-top: 2rem;
}

.badge {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-pill);
	padding: 1rem 1.375rem;
	font-size: 1rem;
	font-weight: 600;
	color: var(--text-primary);
	white-space: nowrap;
	transition: all 0.3s;
	flex: 1 1 auto;
	max-width: 300px;
	justify-content: center;
}

.badge:hover {
	border-color: var(--glass-border-strong);
	transform: translateY(-2px);
}

.badge i {
	color: var(--accent);
	font-size: 1.1rem;
}

.counter-wrapper {
	display: inline-flex;
	align-items: baseline;
	gap: 0;
}

.counter {
	display: inline-block;
	min-width: 2ch;
	text-align: right;
}

/* Servizi */
.services-grid {
	display: grid;
	gap: 1.125rem;
	grid-template-columns: 1fr;
}

@media (min-width: 600px) {
	.services-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 768px) {
	.services-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.service-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	transition: all 0.3s;
}

.service-card:hover {
	border-color: var(--glass-border-strong);
	transform: translateY(-3px);
	box-shadow: 0 16px 40px hsla(0, 0%, 0%, 0.25);
	background: var(--glass-bg-hover);
}

.service-card i {
	font-size: 1.8rem;
	color: var(--accent);
	margin-bottom: 0.75rem;
}

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

.service-card p {
	color: var(--text-secondary);
	font-size: 0.9rem;
	line-height: 1.5;
}

/* Timeline */

.timeline {
	position: relative;
	padding-left: 50px;
}

.timeline::before {
	content: "";
	position: absolute;
	left: 24px;
	top: 0;
	bottom: 0;
	width: 3px;
	border-radius: 3px;
	background: linear-gradient(to bottom, #7ec8e3, var(--accent), #c3aed6);
	opacity: 0.5;
}

.timeline-item {
	position: relative;
	margin-bottom: 40px;
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-md);
	padding: 1.375rem 1.5rem;
	transition: all 0.3s;
}

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

.timeline-item:hover {
	border-color: var(--glass-border-strong);
	transform: translateY(-3px);
	box-shadow: 0 16px 40px hsla(0, 0%, 0%, 0.25);
	background: var(--glass-bg-hover);
}

.timeline-item:hover::before {
	box-shadow: 0 0 28px var(--accent-glow);
	background: hsl(39, 84%, 75%);
}

.timeline-item::before {
	content: "";
	position: absolute;
	left: -38.5px;
	top: 28px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--accent);
	box-shadow: 0 0 18px var(--accent-glow);
	border: 3px solid hsla(0, 0%, 100%, 0.4);
	transition: all 0.3s;
	animation: pulseTimeline 3s infinite;
}

@keyframes pulseTimeline {
	0%,
	100% {
		box-shadow: 0 0 18px var(--accent-glow);
	}
	50% {
		box-shadow:
			0 0 30px var(--accent-glow),
			0 0 60px hsla(36, 72%, 67%, 0.3);
	}
}

.timeline-period {
	display: inline-block;
	background: hsla(36, 72%, 67%, 0.12);
	border: 1px solid hsla(36, 72%, 67%, 0.3);
	padding: 0.188rem 0.75rem;
	border-radius: var(--radius-pill);
	font-size: 0.8rem;
	font-weight: 600;
	color: var(--accent);
	letter-spacing: 0.03em;
	margin-bottom: 0.5rem;
}

.timeline-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--text-primary);
	margin-bottom: 0.5rem;
}

.timeline-text {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
}

/* Barre progresso e tooltip */

.progress-list {
	margin-top: 0.875rem;
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
}

.progress-item {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.progress-label {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.85rem;
	color: var(--text-secondary);
}

.progress-label .course-title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.progress-label .course-title > i {
	font-size: 1rem;
	color: var(--accent);
	width: 1.125rem;
	text-align: center;
}

.progress-label .right-side {
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

.percent {
	font-weight: 600;
	color: var(--accent);
	font-size: 0.8rem;
}

.info-icon {
	cursor: pointer;
	color: var(--text-info);
	font-size: 0.9rem;
	transition: color 0.2s;
	line-height: 1;
	margin-left: 0.375rem;
}

.info-icon:hover,
.info-icon:focus-visible {
	color: var(--text-primary);
}

.progress-bar {
	width: 100%;
	height: 6px;
	border-radius: 6px;
	background: var(--glass-bg-strong);
	overflow: hidden;
}

.progress-fill {
	height: 100%;
	border-radius: 6px;
	background: linear-gradient(90deg, #7ec8e3, var(--accent));
	transition: width 1s ease;
}

.tooltip-text {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	font-size: 0.75rem;
	color: var(--text-info);
	margin-top: 0.25rem;
	padding: 0 0.625rem;
	background: var(--glass-bg-strong);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-sm);
	line-height: 1.4;
	transition:
		max-height 0.3s ease,
		opacity 0.3s ease,
		padding 0.3s ease;
}

.progress-item.active .tooltip-text {
	max-height: 100px;
	opacity: 1;
	padding: 0.375rem 0.625rem;
}

.exercises-note {
	font-size: 0.7rem;
	color: var(--text-info);
	margin-top: 1rem;
	display: flex;
	align-items: center;
	gap: 0.375rem;
}

/* Pillole tech */

.tech-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.75rem;
}

.pill {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
	padding: 0.313rem 0.75rem;
	border-radius: var(--radius-pill);
	background: var(--pill-bg);
	border: 1px solid var(--pill-border);
	color: var(--pill-color);
	font-size: 0.75rem;
	font-weight: 500;
	transition: all 0.3s;
}

.pill i {
	font-size: 0.8rem;
}

.pill:hover {
	background: var(--pill-hover-bg);
	border-color: var(--pill-hover-border);
	box-shadow: 0 0 12px hsla(192, 36%, 73%, 0.15);
}

/* FAQ */

.faq-list {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.faq-item {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-md);
	transition: all 0.3s;
	overflow: hidden;
}

.faq-item:hover {
	border-color: var(--glass-border-strong);
}

.faq-item.open {
	border-color: var(--glass-border-strong);
	box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.2);
	background: var(--glass-bg-strong);
}

.faq-question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1.125rem 1.25rem;
	cursor: pointer;
	font-weight: 600;
	font-size: 0.95rem;
	color: var(--text-primary);
	transition: color 0.3s;
}

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

.faq-arrow {
	font-size: 0.7rem;
	color: var(--text-info);
	transition: transform 0.3s;
}

.faq-item.open .faq-arrow {
	transform: rotate(180deg);
	color: var(--accent);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition:
		max-height 0.4s ease,
		padding 0.4s ease;
	padding: 0 1.25rem;
}

.faq-item.open .faq-answer {
	max-height: 12.5rem;
	padding: 0 1.25rem 1.125rem;
}

.faq-answer p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

/* Contatti */

.contact-section {
	padding: 3.75rem 0 2.5rem;
}
.values-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-bottom: 2.5rem;
}
@media (min-width: 600px) {
	.values-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 900px) {
	.values-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}
.value-card {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: var(--radius-md);
	padding: 1.5rem;
	text-align: center;
	transition: all 0.3s;
}
.value-card:hover {
	border-color: var(--glass-border-strong);
	transform: translateY(-3px);
	box-shadow: 0 16px 40px hsla(0, 0%, 0%, 0.25);
	background: var(--glass-bg-hover);
}
.value-card i {
	font-size: 2rem;
	color: var(--accent);
	margin-bottom: 0.625rem;
}
.value-card h3 {
	font-size: 1.1rem;
	font-weight: 600;
	margin-bottom: 0.375rem;
	color: var(--text-primary);
}
.value-card p {
	font-size: 0.9rem;
	color: var(--text-secondary);
	line-height: 1.5;
}

.contact-cta {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	align-items: center;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.contact-cta {
		flex-direction: row;
		align-items: center;
		gap: 3.125rem;
	}
}

.contact-cta .cta-text {
	flex: 1.3;
	text-align: left;
}

.contact-cta .cta-text .lead {
	font-family: var(--font-heading);
	font-size: 1.5rem;
	color: var(--text-primary);
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.contact-cta .cta-text p {
	color: var(--text-secondary);
	font-size: 1rem;
	line-height: 1.6;
}

.contact-cta .cta-action {
	flex: 0.7;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.75rem;
}

.contact-email-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.625rem;
	padding: 1rem 2rem;
	border-radius: var(--radius-pill);
	background: linear-gradient(135deg, hsla(37, 65%, 61%, 0.85), #c89646cc);
	border: 1px solid rgba(240, 200, 130, 0.5);
	color: hsl(30, 44%, 7%);
	box-shadow: 0 6px 24px var(--accent-glow);
	font-weight: 700;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
	white-space: nowrap;
	font-family: var(--font-body);
	letter-spacing: 0.01em;
}

.contact-email-btn:hover {
	box-shadow: 0 8px 30px hsla(36, 72%, 67%, 0.55);
	border-color: hsla(42, 91%, 78%, 0.6);
}

/* Footer */
.footer {
	text-align: center;
	padding: 3.75rem 1.5rem 2.5rem;
	color: var(--text-info);
	font-size: 0.82rem;
	letter-spacing: 0.02em;
	border-top: 1px solid var(--glass-border);
}

.footer a {
	color: var(--text-secondary);
	text-decoration: none;
	margin: 0 0.5rem;
	transition: color 0.2s;
	cursor: pointer;
}

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

.footer-row {
	margin-top: 0.5rem;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	align-items: center;
}

.footer-sep {
	color: var(--text-info);
	opacity: 0.5;
}

.footer .back-to-top {
	display: block;
	margin: 1.5rem auto;
	font-size: 2rem;
	color: var(--text-info);
	cursor: pointer;
	transition: all 0.3s;
}

.back-to-top:hover {
	color: var(--accent);
}

.footer-wrapper {
	position: relative;
	overflow: hidden;
}

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

.navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 1.5rem;
	background: var(--solid-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid transparent;
	border-bottom-color: var(--glass-border);
	transition: all 0.3s;
	height: auto;
	min-height: 3.75rem;
}

.navbar.scrolled {
	top: 0.75rem;
	left: 0.75rem;
	right: 0.75rem;
	border-radius: 28px;
	background: var(--solid-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border-strong);
	box-shadow: var(--glass-shadow);
	padding: 0.75rem 1.5rem;
}

.navbar-logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.3rem;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #5b9bd5, #3a7bd5, #9b59b6, #e879a8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	white-space: nowrap;
	font-family: var(--font-heading);
	text-shadow: 0 0 20px rgba(100, 150, 220, 0.4);
}

.navbar-logo .full-name {
	display: inline;
}

.navbar-logo .initials {
	display: none;
}

@media (min-width: 763px) {
	.navbar-logo .full-name {
		display: none;
	}
	.navbar-logo .initials {
		display: inline;
	}
}

@media (min-width: 1200px) {
	.navbar-logo {
		font-size: 1.6rem;
	}

	.navbar-logo .full-name {
		display: inline;
	}

	.navbar-logo .initials {
		display: none;
	}
}

.navbar-links {
	display: none;
	gap: calc(0.25rem + 1dvw);
	list-style: none;
	flex-wrap: wrap;
}

@media (min-width: 763px) {
	.navbar-links {
		display: flex;
	}
}

.navbar-links a {
	color: var(--text-secondary);
	text-decoration: none;
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius-pill);
	transition: all 0.3s;
	font-weight: 500;
	font-size: 0.85rem;
}

@media (min-width: 1000px) {
	.navbar-links a {
		padding: 0.5rem 0.875rem;
		font-size: 0.88rem;
	}
}

.navbar-links a:hover {
	background: var(--glass-bg-strong);
	color: var(--text-primary);
}

.navbar-links a.active {
	background: var(--nav-active-bg);
	color: var(--nav-active-color);
	font-weight: 600;
}

.navbar-actions {
	display: flex;
	align-items: center;
	gap: 0.625rem;
}

.navbar-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.125rem;
	height: 2.125rem;
	border-radius: 50%;
	background: transparent;
	border: 1px solid var(--glass-border);
	color: var(--text-secondary);
	font-size: 1rem;
	cursor: pointer;
	transition: all 0.3s;
	text-decoration: none;
}

.navbar-icon:hover,
.navbar-icon:active {
	background: var(--glass-bg-hover);
	border-color: var(--glass-border-strong);
	color: var(--text-primary);
}

/* ==================== MOBILE NAV ==================== */

.mobile-nav {
	display: flex;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: var(--solid-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-top: 1px solid var(--glass-border);
	justify-content: space-around;
	align-items: center;
	padding: 0.5rem;
	height: 4.063rem;
}

@media (min-width: 768px) {
	.mobile-nav {
		display: none;
	}
}

.mobile-nav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	color: var(--text-info);
	text-decoration: none;
	font-size: 0.65rem;
	font-weight: 500;
	line-height: 1;
	transition: all 0.3s;
	padding: 0.5rem 0.425rem;
	border-radius: var(--radius-sm);
}
.mobile-nav a i {
	font-size: 1.2rem;
}
.mobile-nav a:hover,
.mobile-nav a.active {
	color: var(--accent);
	background: var(--glass-bg-strong);
}

/* ==================== MODALI ==================== */

.modal-overlay {
	position: fixed;
	inset: 0;
	z-index: 1000;
	background: hsla(0, 0%, 0%, 0.7);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.modal-overlay.open {
	opacity: 1;
	pointer-events: all;
}

.modal {
	background: var(--solid-bg);
	border: 1px solid var(--glass-border-strong);
	border-radius: 0;
	padding: 1rem;
	width: 100%;
	height: 100%;
	max-height: 100%;
	box-shadow: none;
	transform: translateY(1.25rem);
	transition: transform 0.3s ease;
	color: var(--text-primary);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}

.modal-overlay.open .modal {
	transform: translateY(0);
}

.modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 1rem;
	flex-shrink: 0;
}

.modal-close {
	background: var(--glass-bg);
	border: 1px solid var(--glass-border);
	border-radius: 50%;
	width: 2.125rem;
	height: 2.125rem;
	cursor: pointer;
	color: var(--text-secondary);
	font-size: 1.1rem;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.modal-close:hover {
	background: var(--glass-bg-hover);
	color: var(--text-primary);
}

.modal-body {
	font-size: 0.95rem;
	color: var(--text-secondary);
	line-height: 1.6;
	flex: 1;
	overflow-y: auto;
}

.google-form-iframe {
	width: 100%;
	height: calc(100dvh - 5rem);
	border: none;
	border-radius: var(--radius-sm);
}

@media (min-width: 736px) {
	.modal {
		border-radius: var(--radius-lg);
		padding: 1.25rem;
		max-width: 800px;
		width: 95%;
		height: auto;
		max-height: 90vh;
		box-shadow: 0 24px 60px hsla(0, 0%, 0%, 0.5);
	}

	.google-form-iframe {
		height: 85dvh;
	}
}

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

.cookie-banner {
	position: fixed;
	bottom: 1.25rem;
	left: 1.25rem;
	right: 1.25rem;
	z-index: 1001;
	max-width: 28.125rem;
	background: var(--solid-bg);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid var(--glass-border-strong);
	border-radius: var(--radius-lg);
	padding: 1.25rem 1.5rem;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 0.875rem;
	font-size: 0.85rem;
	color: var(--text-secondary);
	transition: opacity 0.3s ease;
	text-align: center;
}

.cookie-banner.show {
	display: flex;
}

.cookie-banner p {
	flex: 1;
	margin: 0;
}

.cookie-btn {
	padding: 0.5rem 1.125rem;
	border-radius: var(--radius-pill);
	background: var(--accent);
	color: #0a0a0a;
	font-weight: 600;
	font-size: 0.8rem;
	border: none;
	cursor: pointer;
	white-space: nowrap;
}

@media (min-width: 736px) {
	.cookie-banner {
		flex-direction: row;
		text-align: left;
	}
}
