.information {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 80px;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 80px auto;
	padding: 0 24px;
}

/* --- SISTEMA GLASSMORPHISM --- */
.glass {
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

/* --- SEZIONI COMUNI --- */
.section-header {
	text-align: center;
	margin-bottom: 50px;
	width: 100%;
}

.section-header h2 {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	letter-spacing: -0.03em;
	margin-bottom: 16px;
}

.section-header p {
	font-size: 1.15rem;
	color: var(--text-muted);
}


/* --- COME FUNZIONA --- */
.steps-section {
	max-width: 1200px;
	width: 100%;
}

.steps-grid {
	display: flex;
	justify-content: center;
	align-items: stretch;
	gap: 30px;
	width: 100%;
}

.step-card {
	flex: 1;
	min-width: 0;
	padding: 40px 30px;
	border-radius: 32px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.step-icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.8rem;
	margin: 0 auto 24px auto;
}

.bg-pink-light {
	background: rgba(255, 16, 83, 0.1);
}

.text-pink {
	color: var(--brand-pink);
}

.bg-blue-light {
	background: rgba(0, 188, 212, 0.1);
}

.text-blue {
	color: #00bcd4;
}

.bg-yellow-light {
	background: rgba(255, 179, 0, 0.1);
}

.text-yellow {
	color: #ffb300;
}

.step-card h3 {
	font-size: 1.3rem;
	margin-bottom: 12px;
}

.step-card p {
	color: var(--text-muted);
	line-height: 1.5;
}

/* --- BENTO GRID --- */
.features-section {
	max-width: 1200px;
	width: 100%;
}

.bento-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 24px;
	width: 100%;
}

.bento-large {
	grid-column: span 2;
	flex-direction: row !important;
	align-items: center;
}

.bento-large .bento-text {
	flex: 1;
	padding-right: 40px;
	margin-bottom: 0;
}

.bento-large .bento-image-wrapper {
	flex: 1;
	margin-top: 0;
	align-items: flex-end;
}

.bento-card {
	border-radius: 32px;
	padding: 40px 40px 0 40px;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.bento-text {
	margin-bottom: 20px;
	z-index: 2;
}

.bento-text h3 {
	font-size: 1.6rem;
	margin-bottom: 12px;
	line-height: 1.25;
}

.bento-text p {
	font-size: 1.05rem;
	color: var(--text-muted);
	line-height: 1.5;
}

.bento-image-wrapper {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	padding-bottom: 15px;
}

.bento-img {
	width: 60%;
	max-width: 100%;
	height: auto;
}


/* --- SEZIONE COMPARAZIONE --- */
.comparison-section {
	max-width: 1000px;
	width: 100%;
	border-radius: 32px;
	padding: 50px 40px;
}

.comparison-section .section-header {
	margin-bottom: 30px;
}

.comparison-table-wrapper {
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.comparison-table {
	width: 100%;
	border-collapse: collapse;
	text-align: left;
	min-width: 480px;
}

.comparison-table th,
.comparison-table td {
	padding: 15px;
}

.comparison-table thead tr {
	border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.comparison-table tbody tr {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comparison-table th.col-feature {
	font-size: 1.1rem;
}

.comparison-table th.col-plan {
	color: var(--text-muted);
	text-align: center;
	font-size: 1.1rem;
}

.comparison-table td.col-feature {
	font-weight: 500;
}

.comparison-table td.col-status {
	text-align: center;
}

.icon-check {
	color: #4caf50;
}

.icon-cross {
	color: #f44336;
}


/* --- CTA FINALE --- */
.cta-section {
	max-width: 1200px;
	width: 100%;
}

.cta-box {
	padding: 60px 40px;
	border-radius: 40px;
	text-align: center;
}

.cta-box h2 {
	font-size: 2.2rem;
	margin-bottom: 16px;
}

.cta-box p {
	font-size: 1.15rem;
	color: var(--text-muted);
	margin-bottom: 32px;
}

.cta-actions {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
}

/* Badge premium per l'intestazione */
.cta-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 16px;
	background: rgba(0, 188, 212, 0.1);
	color: #00bcd4;
	border: 1px solid rgba(0, 188, 212, 0.2);
	font-weight: 700;
	font-size: 0.85rem;
	border-radius: 50px;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Regola il margine della descrizione principale */
.cta-box p.cta-description {
	margin-bottom: 30px;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

/* Stile per la didascalia in piccolo sotto il bottone */
.cta-box p.cta-caption {
	font-size: 0.85rem;
	color: #888;
	margin-top: 20px;
	margin-bottom: 0;
	font-style: italic;
}


.education-hero {
	min-height: 75vh;
	padding-top: 80px;
}

.education-hero .hero-title {
	font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.text-highlight {
	color: var(--brand-pink);
	position: relative;
	display: inline-block;
}

.text-highlight::after {
	content: '';
	position: absolute;
	bottom: 5px;
	left: 0;
	width: 100%;
	height: 8px;
	background: rgba(255, 16, 83, 0.2);
	border-radius: 4px;
	z-index: -1;
}

.hero-actions {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 20px;
}

/* Fix navbar z-index */
.glass-nav {
	background: rgba(255, 255, 255, 0.65);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.8);
	border-radius: 100px;
	position: sticky;
	top: 20px;
	width: calc(100% - 40px);
	z-index: 1000;
}

.steps-grid-edu .step-card {
	max-width: 420px;
	width: 100%;
}

.btn-secondary.glass {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* --- WELCOME BANNER POPUP --- */
.welcome-popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	padding: 20px;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.welcome-popup-overlay.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.welcome-popup-overlay .popup-card {
	position: relative;
	max-width: 620px;
	width: 100%;
	transform: scale(1);
	transition: transform 0.3s ease;
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	max-height: 90vh;
	overflow-y: auto;
}

.welcome-popup-overlay.hidden .popup-card {
	transform: scale(0.95);
}


/* ==========================================================================
   MEDIA QUERIES - RESPONSIVE DESIGN
   ========================================================================== */

/* --- TABLET (<= 992px) --- */
@media (max-width: 992px) {
	.steps-grid {
		gap: 20px;
	}

	.step-card {
		padding: 32px 20px;
	}

	.bento-large .bento-img {
		width: 75%;
	}
}

/* --- TABLET / MOBILE LANDSCAPE (<= 768px) --- */
@media (max-width: 768px) {
	.information {
		gap: 60px;
		margin-bottom: 60px;
		padding: 0 20px;
	}

	.steps-grid {
		flex-direction: column;
		gap: 20px;
	}

	.step-card {
		width: 100%;
		border-radius: 24px;
		padding: 32px 24px;
	}

	.bento-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.bento-large {
		grid-column: span 1;
		flex-direction: column !important;
		align-items: stretch;
	}

	.bento-large .bento-text {
		padding-right: 0;
		margin-bottom: 20px;
	}

	.bento-card {
		padding: 30px 24px 0 24px;
		border-radius: 24px;
	}

	.bento-text h3 {
		font-size: 1.4rem;
	}

	.bento-img {
		width: 70%;
		max-width: 240px;
	}

	.comparison-section {
		padding: 35px 24px;
		border-radius: 24px;
	}
}

/* --- SMARTPHONE (<= 600px) --- */
@media (max-width: 600px) {
	.information {
		gap: 45px;
		margin-bottom: 45px;
		padding: 0 16px;
	}

	.section-header {
		margin-bottom: 28px;
	}

	.section-header h2 {
		font-size: 1.7rem;
		margin-bottom: 10px;
	}

	.section-header p {
		font-size: 0.95rem;
	}

	.step-card {
		padding: 28px 18px;
		border-radius: 20px;
	}

	.step-icon {
		width: 58px;
		height: 58px;
		font-size: 1.5rem;
		margin-bottom: 16px;
	}

	.step-card h3 {
		font-size: 1.2rem;
	}

	.step-card p {
		font-size: 0.92rem;
	}

	.bento-card {
		padding: 24px 18px 0 18px;
		border-radius: 20px;
	}

	.bento-text h3 {
		font-size: 1.25rem;
	}

	.bento-text p {
		font-size: 0.92rem;
	}

	.bento-img {
		width: 80%;
		max-width: 220px;
	}

	.comparison-section {
		padding: 28px 16px;
		border-radius: 20px;
	}

	.comparison-table {
		min-width: 420px;
	}

	.comparison-table th,
	.comparison-table td {
		padding: 12px 8px;
		font-size: 0.88rem;
	}

	.comparison-table th.col-feature,
	.comparison-table th.col-plan {
		font-size: 0.95rem;
	}

	.cta-box {
		padding: 40px 20px;
		border-radius: 24px;
	}

	.cta-box h2 {
		font-size: 1.6rem;
	}

	.cta-box p {
		font-size: 0.95rem;
	}

	.hero-actions {
		flex-direction: column;
		width: 100%;
		max-width: 300px;
	}

	.hero-actions a {
		width: 100%;
	}

	.steps-grid-edu .step-card {
		width: 100% !important;
		max-width: 100% !important;
	}

	/* Popup Banner Mobile */
	.welcome-popup-overlay {
		padding: 16px;
	}

	.welcome-popup-overlay .popup-card {
		padding: 45px 18px 24px;
		border-radius: 24px;
	}

	.welcome-popup-overlay .popup-card h2 {
		font-size: 1.35rem;
		line-height: 1.3;
		margin-bottom: 12px;
	}

	.welcome-popup-overlay .popup-card p.cta-description {
		font-size: 0.92rem;
		line-height: 1.5;
		margin-bottom: 22px;
	}

	.welcome-popup-overlay .cta-actions {
		width: 100%;
	}

	.welcome-popup-overlay .cta-actions .btn-primary {
		width: 100%;
		padding: 14px 20px;
		text-align: center;
	}
}