/*!
 * HostWebo Theme - Main Styles
 * @package HostWebo
 * @version 1.0.0
 */

/* ===================================
   RESET & BASE STYLES
   =================================== */

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 80px; /* Altezza header */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body {
	margin: 0;
	font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #ffffff;
	background: linear-gradient(to bottom, #0f1027 0%, #111235 50%, #0b0c22 100%);
	min-height: 100vh;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
	margin: 0 0 1rem 0;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s ease;
}

a:hover {
	opacity: 0.8;
}

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

button, input, textarea, select {
	font-family: inherit;
	font-size: inherit;
}

button {
	cursor: pointer;
	border: none;
	background: none;
	padding: 0;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important;
}

/* ===================================
   HEADER
   =================================== */

.hostwebo-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: rgba(15, 16, 39, 0.6);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hostwebo-nav {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 0;
}

/* Logo */
.hostwebo-logo-link {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.125rem;
	font-weight: 600;
	letter-spacing: -0.025em;
}

.hostwebo-logo-default {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.logo-icon {
	position: relative;
	width: 36px;
	height: 36px;
}

.logo-bg {
	position: absolute;
	inset: 0;
	border-radius: 1rem;
	background: linear-gradient(135deg, #5143D9 0%, #818CF8 50%, #c084fc 100%);
	animation: slow-spin 10s linear infinite;
}

.logo-inner {
	position: absolute;
	inset: 2px;
	border-radius: 0.875rem;
	background: #0f1027;
}

.logo-icon svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 18px;
	height: 18px;
	z-index: 1;
}

/* Navigation Menu */
.hostwebo-nav-menu {
	display: none;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 1.5rem;
	align-items: center;
	margin-left: auto;
}

.hostwebo-nav-menu li {
	margin: 0;
}

.hostwebo-nav-menu a {
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.hostwebo-nav-menu a:hover,
.hostwebo-nav-menu .current-menu-item > a {
	opacity: 1;
	font-weight: 500;
}

/* Area Clienti - Divider item */
.hostwebo-nav-divider {
	margin-left: 0.5rem;
	padding-left: 1.5rem;
	border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hostwebo-nav-divider a {
	opacity: 0.8;
	transition: opacity 0.2s ease;
}

.hostwebo-nav-divider a:hover {
	opacity: 1;
}

/* CTA Button - Inizia ora */
.hostwebo-header-cta {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	background: linear-gradient(90deg, #5143D9 0%, #6366f1 50%, #d946ef 100%);
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 8px 30px rgba(37, 0, 255, 0.35);
	transition: transform 0.2s ease;
	opacity: 1;
}

.hostwebo-header-cta:hover {
	transform: translateY(-0.125rem);
	opacity: 1;
}

.hostwebo-cta-button {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	background: linear-gradient(90deg, #5143D9 0%, #6366f1 50%, #d946ef 100%);
	font-size: 0.875rem;
	font-weight: 500;
	box-shadow: 0 8px 30px rgba(37, 0, 255, 0.35);
	transition: transform 0.2s ease;
}

.hostwebo-cta-button:hover {
	transform: translateY(-2px);
	opacity: 1;
}

/* Mobile Menu Toggle */
.hostwebo-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	background: rgba(255, 255, 255, 0.05);
	transition: background 0.2s ease;
	color: #ffffff;
}

.hostwebo-menu-toggle:hover {
	background: rgba(255, 255, 255, 0.1);
}

.hostwebo-menu-toggle svg {
	width: 20px;
	height: 20px;
	color: #ffffff;
}

/* Mobile Menu */
.hostwebo-mobile-menu {
	display: none;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(15, 16, 39, 0.8);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.hostwebo-mobile-menu.active {
	display: block;
}

.hostwebo-mobile-menu ul {
	list-style: none;
	margin: 0;
	padding: 0.75rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hostwebo-mobile-menu li {
	margin: 0;
}

.hostwebo-mobile-menu a {
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 0.75rem;
	transition: background 0.2s ease;
}

.hostwebo-mobile-menu a:hover {
	background: rgba(255, 255, 255, 0.05);
}

.hostwebo-mobile-menu .hostwebo-mobile-cta {
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hostwebo-mobile-link {
	display: block;
	padding: 0.5rem 0.75rem;
	border-radius: 0.75rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	text-align: center;
	font-weight: 500;
	transition: background 0.2s ease;
}

.hostwebo-mobile-link:hover {
	background: rgba(255, 255, 255, 0.05);
}

.hostwebo-mobile-menu .hostwebo-header-cta {
	display: block;
	text-align: center;
	padding: 0.5rem 0.75rem;
}

/* Desktop Navigation */
@media (min-width: 768px) {
	.hostwebo-nav-menu {
		display: flex;
	}

	.hostwebo-menu-toggle {
		display: none;
	}

	.hostwebo-mobile-menu {
		display: none !important;
	}
}

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

.hostwebo-hero {
	position: relative;
	overflow: hidden;
	padding: 5rem 0;
}

.hostwebo-hero-content {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	align-items: center;
}

@media (min-width: 768px) {
	.hostwebo-hero-content {
		grid-template-columns: repeat(2, 1fr);
	}
}

.hostwebo-hero-text h1 {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
	.hostwebo-hero-text h1 {
		font-size: 3rem;
	}
}

.hostwebo-hero-text .gradient-text {
	background: linear-gradient(90deg, #ffffff 0%, #c7d2fe 50%, #f0abfc 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hostwebo-hero-text p {
	max-width: 32rem;
	opacity: 0.8;
	font-size: 1.125rem;
}

.hostwebo-hero-buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 1.5rem 0;
}

@media (min-width: 640px) {
	.hostwebo-hero-buttons {
		flex-direction: row;
	}
}

.hostwebo-hero-widget {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
}

@media (min-width: 768px) {
	.hostwebo-hero-widget {
		justify-content: flex-end;
	}
}

.hostwebo-button-primary {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 1rem;
	background: linear-gradient(90deg, #5143D9 0%, #6366f1 50%, #d946ef 100%);
	font-weight: 500;
	text-align: center;
	box-shadow: 0 8px 30px rgba(37, 0, 255, 0.35);
	transition: transform 0.2s ease;
}

.hostwebo-button-primary:hover {
	transform: translateY(-2px);
	opacity: 1;
}

.hostwebo-button-secondary {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	font-weight: 500;
	text-align: center;
	transition: background 0.2s ease;
}

.hostwebo-button-secondary:hover {
	background: rgba(255, 255, 255, 0.05);
	opacity: 1;
}

.hostwebo-hero-features {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 0.5rem;
	font-size: 0.75rem;
	opacity: 0.75;
}

@media (min-width: 640px) {
	.hostwebo-hero-features {
		flex-direction: row;
		align-items: center;
	}
}

.hostwebo-hero-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.hostwebo-hero-feature svg {
	width: 14px;
	height: 14px;
}

/* Gradient Orbs */
.hostwebo-gradient-orbs {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hostwebo-gradient-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.25;
}

.hostwebo-gradient-orb-1 {
	top: -8rem;
	left: -6rem;
	width: 18rem;
	height: 18rem;
	background: #5143D9;
}

.hostwebo-gradient-orb-2 {
	top: 4rem;
	right: -6rem;
	width: 18rem;
	height: 18rem;
	background: #c084fc;
	opacity: 0.2;
}

.hostwebo-gradient-orb-3 {
	bottom: 0;
	left: 33%;
	width: 18rem;
	height: 18rem;
	background: #818CF8;
	opacity: 0.2;
}

/* ===================================
   SECTIONS
   =================================== */

.hostwebo-section {
	padding: 4rem 0;
}

.hostwebo-section-header {
	margin-bottom: 2.5rem;
}

.hostwebo-section-header-flex {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 2.5rem;
}

.hostwebo-section-title {
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.hostwebo-section-title {
		font-size: 2.25rem;
	}
}

.hostwebo-section-title-center {
	text-align: center;
	font-size: 1.875rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.hostwebo-section-title-center {
		font-size: 2.5rem;
	}
}

.hostwebo-section-subtitle {
	max-width: 42rem;
	margin: 0.75rem auto 0;
	text-align: center;
	opacity: 0.8;
}

.hostwebo-section-label {
	font-size: 0.875rem;
	opacity: 0.7;
}

/* Grid Layouts */
.hostwebo-grid {
	display: grid;
	gap: 1.5rem;
}

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

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

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

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

@media (min-width: 1024px) {
	.hostwebo-grid-4 {
		grid-template-columns: repeat(4, 1fr);
	}
}

/* Cards */
.hostwebo-card {
	padding: 1.25rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	transition: all 0.3s ease;
}

.hostwebo-card:hover {
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
}

.hostwebo-card-icon {
	display: inline-flex;
	padding: 0.5rem;
	border-radius: 0.75rem;
	background: linear-gradient(135deg, #5143D9 0%, #818CF8 50%, #c084fc 100%);
	margin-bottom: 1rem;
	transition: transform 0.3s ease;
}

.hostwebo-card:hover .hostwebo-card-icon {
	transform: scale(1.1) rotate(-6deg);
}

.hostwebo-card-icon svg {
	width: 18px;
	height: 18px;
}

.hostwebo-card-title {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 0.5rem;
}

.hostwebo-card-text {
	font-size: 0.875rem;
	opacity: 0.8;
}

/* ===================================
   TECH STACK SECTION
   =================================== */

.hostwebo-tech-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

@media (min-width: 640px) {
	.hostwebo-tech-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

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

@media (min-width: 1024px) {
	.hostwebo-tech-grid {
		grid-template-columns: repeat(9, 1fr);
	}
}

.tech-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 1rem;
	text-align: center;
	font-size: 0.875rem;
	opacity: 0.8;
	transition: all 0.3s ease;
}

.tech-card:hover {
	opacity: 1;
	transform: translateY(-2px);
}

.tech-logo {
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.tech-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	filter: brightness(1.1);
	transition: filter 0.3s ease;
}

.tech-card:hover .tech-logo img {
	filter: brightness(1.3);
}

.tech-name {
	font-size: 0.75rem;
	line-height: 1.2;
}

/* ===================================
   PRICING SECTION
   =================================== */

.hostwebo-pricing-toggle {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.25rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	margin: 0 auto;
	width: fit-content;
}

.hostwebo-pricing-toggle button {
	padding: 0.5rem 1rem;
	border-radius: 0.75rem;
	font-size: 0.875rem;
	color: #ffffff;
	transition: all 0.2s ease;
}

.hostwebo-pricing-toggle button.active {
	background: linear-gradient(90deg, #5143D9 0%, #6366f1 50%, #d946ef 100%);
	color: #ffffff;
}

.hostwebo-pricing-toggle button:not(.active):hover {
	background: rgba(255, 255, 255, 0.05);
}

.hostwebo-pricing-badge {
	display: inline-block;
	margin-left: 0.25rem;
	padding: 0.125rem 0.5rem;
	border-radius: 0.375rem;
	background: rgba(52, 211, 153, 0.2);
	color: #6ee7b7;
	font-size: 0.625rem;
}

/* Price Cards */
.hostwebo-price-card {
	position: relative;
	padding: 1.5rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	transition: all 0.3s ease;
}

.hostwebo-price-card:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
}

.hostwebo-price-card-featured {
	padding: 0.125rem;
	border: none;
	background: linear-gradient(90deg, #818CF8 0%, #c084fc 50%, #f472b6 75%, #c084fc 100%);
	background-size: 300% 300%;
	animation: gradient-flow 4s ease infinite;
	box-shadow: 0 10px 50px rgba(80, 70, 220, 0.25);
}

/* Mantieni bordo animato gradient sempre visibile anche al hover */
.hostwebo-price-card-featured:hover {
	transform: none;
	border: none;
	background: linear-gradient(90deg, #818CF8 0%, #c084fc 50%, #f472b6 75%, #c084fc 100%);
	background-size: 300% 300%;
	animation: gradient-flow 4s ease infinite;
}

.hostwebo-price-card-featured .hostwebo-price-card-inner {
	padding: 1.5rem;
	border-radius: 1.375rem;
	background: linear-gradient(180deg, #161730 0%, #0f1027 100%);
}

.hostwebo-price-card-badge {
	position: absolute;
	top: -0.75rem;
	right: 1rem;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	background: linear-gradient(90deg, #5143D9 0%, #818CF8 100%);
	font-size: 0.75rem;
	font-weight: 500;
	z-index: 20;
}

.hostwebo-price-card-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 1rem;
}

.hostwebo-price-card-name {
	font-size: 1.125rem;
	font-weight: 600;
}

.hostwebo-price-card-price {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 1.25rem;
	position: relative;
}

/* Prima riga: prezzo + periodo sulla stessa linea */
.hostwebo-price-main-row {
	display: flex;
	align-items: baseline;
	gap: 0.25rem;
}

.hostwebo-price-amount {
	font-size: 2.25rem;
	font-weight: 700;
	letter-spacing: -0.025em;
}

.hostwebo-price-period {
	font-size: 0.875rem;
	opacity: 0.8;
}

/* Riga sconto: prezzo barrato + badge */
.hostwebo-price-discount-row {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: -0.25rem;
}

.hostwebo-price-original-text {
	font-size: 0.875rem;
	opacity: 0.7;
	text-decoration: line-through;
}

.hostwebo-price-badge {
	display: inline-block;
	padding: 0.25rem 0.625rem;
	background: linear-gradient(135deg, #10b981, #059669);
	color: white;
	border-radius: 1rem;
	font-size: 0.75rem;
	font-weight: 600;
	line-height: 1;
}

.hostwebo-price-badge-yearly {
	background: linear-gradient(135deg, #6366f1, #4f46e5);
	margin-top: 0.5rem;
}

/* Legacy - manteniamo per compatibilità */
.hostwebo-price-original {
	font-size: 0.875rem;
	opacity: 0.7;
	margin-bottom: 0.25rem;
}

.hostwebo-price-features {
	list-style: none;
	margin: 0 0 1.5rem 0;
	padding: 0;
}

.hostwebo-price-feature {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	margin-bottom: 0.5rem;
	font-size: 0.875rem;
}

.hostwebo-price-feature svg {
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-top: 0.125rem;
}

.hostwebo-price-feature.disabled {
	opacity: 0.5;
}

.hostwebo-price-feature svg.check {
	color: #34d399;
}

.hostwebo-price-feature svg.x {
	color: rgba(255, 255, 255, 0.4);
}

.hostwebo-price-button {
	display: block;
	width: 100%;
	padding: 0.5rem 1rem;
	border-radius: 1rem;
	font-weight: 500;
	text-align: center;
	transition: all 0.2s ease;
}

.hostwebo-price-button-primary {
	background: linear-gradient(90deg, #5143D9 0%, #6366f1 50%, #d946ef 100%);
	box-shadow: 0 8px 30px rgba(37, 0, 255, 0.35);
}

.hostwebo-price-button-primary:hover {
	transform: translateY(-2px);
	opacity: 1;
}

.hostwebo-price-button-secondary {
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.hostwebo-price-button-secondary:hover {
	background: rgba(255, 255, 255, 0.05);
	opacity: 1;
}

/* Pricing Disclaimer */
.hostwebo-pricing-disclaimer {
	margin-top: 2.5rem;
	padding: 1.25rem 1.5rem;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 0.75rem;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.hostwebo-pricing-disclaimer p {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	margin: 0;
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.8);
}

.hostwebo-pricing-disclaimer svg {
	flex-shrink: 0;
	margin-top: 0.125rem;
	color: #818CF8;
}

@media (max-width: 768px) {
	.hostwebo-pricing-disclaimer {
		margin-top: 2rem;
		padding: 1rem;
		font-size: 0.8125rem;
	}

	.hostwebo-pricing-disclaimer p {
		gap: 0.5rem;
	}

	.hostwebo-pricing-disclaimer svg {
		width: 14px;
		height: 14px;
	}
}

/* Tooltip per caratteristiche piani */
.hostwebo-tooltip {
	position: relative;
	border-bottom: 1px dashed rgba(255, 255, 255, 0.6);
	cursor: help;
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

.hostwebo-tooltip::after {
	content: attr(data-tooltip);
	position: absolute;
	bottom: 125%;
	left: 50%;
	transform: translateX(-50%) scale(0.95);
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	color: #e2e8f0;
	padding: 0.5rem 0.75rem;
	border-radius: 0.5rem;
	font-size: 0.75rem;
	width: 200px;
	text-align: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
	z-index: 10;
	white-space: normal;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.hostwebo-tooltip:hover::after,
.hostwebo-tooltip:focus::after {
	opacity: 1;
	visibility: visible;
	transform: translateX(-50%) scale(1);
}

/* Icona caratteristica */
.hostwebo-feature-icon {
	display: inline-flex;
	width: 16px;
	height: 16px;
	flex-shrink: 0;
	margin-left: 0.375rem;
	color: #818CF8;
	opacity: 1;
	transition: transform 0.2s ease, color 0.2s ease;
}

.hostwebo-feature-icon svg {
	width: 100%;
	height: 100%;
}

.hostwebo-price-feature:hover .hostwebo-feature-icon {
	transform: scale(1.1);
	color: #6366f1;
}

/* Feature con tooltip */
.hostwebo-price-feature-text {
	display: inline-flex;
	align-items: center;
	gap: 0.375rem;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.hostwebo-testimonials-container {
	position: relative;
	display: flex;
	gap: 1.5rem;
	height: 500px;
	max-height: 75vh;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
	mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.hostwebo-testimonials-column {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.hostwebo-testimonials-column.animate-slow {
	animation: scroll-up 80s linear infinite;
}

.hostwebo-testimonials-column.animate-medium {
	animation: scroll-up 60s linear infinite;
}

.hostwebo-testimonials-column.animate-fast {
	animation: scroll-up 40s linear infinite;
}

.hostwebo-testimonials-column:hover {
	animation-play-state: paused;
}

.hostwebo-testimonial-card {
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
}

.hostwebo-testimonial-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.hostwebo-testimonial-avatar {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: 2px solid rgba(129, 140, 248, 0.5);
	object-fit: cover;
}

.hostwebo-testimonial-name {
	font-weight: 600;
	margin: 0;
}

.hostwebo-testimonial-title {
	font-size: 0.875rem;
	opacity: 0.7;
	margin: 0;
}

.hostwebo-testimonial-rating {
	display: flex;
	gap: 0.25rem;
	margin-bottom: 0.5rem;
}

.hostwebo-testimonial-rating svg {
	width: 16px;
	height: 16px;
}

.hostwebo-testimonial-rating .star-filled {
	color: #fbbf24;
	fill: #fbbf24;
}

.hostwebo-testimonial-rating .star-empty {
	color: #4b5563;
	fill: #4b5563;
}

.hostwebo-testimonial-quote {
	font-size: 1rem;
	opacity: 0.9;
	margin: 0;
}

/* Hide 2nd column on mobile */
@media (max-width: 767px) {
	.hostwebo-testimonials-column:nth-child(2),
	.hostwebo-testimonials-column:nth-child(3) {
		display: none;
	}
}

/* Hide 3rd column on tablet */
@media (min-width: 768px) and (max-width: 1023px) {
	.hostwebo-testimonials-column:nth-child(3) {
		display: none;
	}
}

/* ===================================
   CTA SECTION
   =================================== */

.hostwebo-cta {
	position: relative;
	overflow: hidden;
	padding: 2rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: linear-gradient(90deg, #5143D9 0%, #6366f1 50%, #c084fc 100%);
	text-align: center;
	box-shadow: 0 20px 60px rgba(81, 67, 217, 0.4);
}

.hostwebo-cta-orb {
	position: absolute;
	top: -6rem;
	left: -6rem;
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	filter: blur(80px);
}

.hostwebo-cta-content {
	position: relative;
	z-index: 1;
}

.hostwebo-cta h3 {
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
	.hostwebo-cta h3 {
		font-size: 1.875rem;
	}
}

.hostwebo-cta p {
	max-width: 42rem;
	margin: 0 auto 1.5rem;
	opacity: 0.9;
}

.hostwebo-cta-button {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.95);
	color: #0f1027;
	font-weight: 500;
	transition: background 0.2s ease;
}

.hostwebo-cta-button:hover {
	background: #ffffff;
	opacity: 1;
}

/* ===================================
   FAQ SECTION
   =================================== */

.hostwebo-faq {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}

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

.hostwebo-faq-item {
	padding: 1.25rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	transition: background 0.2s ease;
}

.hostwebo-faq-item[open] {
	background: rgba(255, 255, 255, 0.1);
}

.hostwebo-faq-question {
	cursor: pointer;
	list-style: none;
	font-size: 1rem;
	font-weight: 500;
	opacity: 0.95;
	padding-right: 1rem;
	position: relative;
}

.hostwebo-faq-question::-webkit-details-marker {
	display: none;
}

.hostwebo-faq-question::after {
	content: '+';
	position: absolute;
	right: 0;
	font-size: 1.5rem;
	font-weight: 300;
	transition: transform 0.2s ease;
}

.hostwebo-faq-item[open] .hostwebo-faq-question {
	opacity: 1;
}

.hostwebo-faq-item[open] .hostwebo-faq-question::after {
	content: '−';
}

.hostwebo-faq-answer {
	margin-top: 0.5rem;
	font-size: 0.875rem;
	opacity: 0.8;
	line-height: 1.6;
}

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

.hostwebo-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 2.5rem 0;
}

.hostwebo-footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
}

@media (min-width: 768px) {
	.hostwebo-footer-content {
		flex-direction: row;
	}
}

.hostwebo-footer-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.hostwebo-footer-logo {
	position: relative;
	width: 32px;
	height: 32px;
}

.hostwebo-footer-logo .logo-bg {
	position: absolute;
	inset: 0;
	border-radius: 1rem;
	background: linear-gradient(135deg, #5143D9 0%, #818CF8 50%, #c084fc 100%);
}

.hostwebo-footer-logo .logo-inner {
	position: absolute;
	inset: 2px;
	border-radius: 0.875rem;
	background: #0f1027;
}

.hostwebo-footer-logo svg {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
	z-index: 1;
}

.hostwebo-footer-copyright {
	font-size: 0.875rem;
	opacity: 0.8;
}

.hostwebo-footer-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	opacity: 0.8;
}

@media (min-width: 768px) {
	.hostwebo-footer-menu {
		gap: 1.5rem;
	}
}

.hostwebo-footer-menu a:hover {
	opacity: 1;
}

/* ===================================
   DOMAIN PAGE - LEGACY STYLES (Updated)
   =================================== */

/* Domain Pricing Grid (for domain-pricing.php) */
.domain-pricing-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	margin-top: 2rem;
}

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

@media (min-width: 768px) {
	.domain-pricing-grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.domain-pricing-grid {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	}
}

.domain-price-item {
	padding: 1.5rem;
	border-radius: 1rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(40px);
	text-align: center;
	transition: all 0.3s ease;
}

.domain-price-item:hover {
	transform: translateY(-4px);
	border-color: rgba(255, 255, 255, 0.2);
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0 8px 30px rgba(129, 140, 248, 0.15);
}

.domain-price-item .domain-ext {
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
	color: #818CF8;
	margin-bottom: 0.5rem;
}

.domain-price-item .domain-price {
	display: block;
	font-size: 1.125rem;
	font-weight: 500;
	opacity: 0.9;
}

/* ===================================
   ANIMATIONS
   =================================== */

@keyframes slow-spin {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes gradient-flow {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@keyframes scroll-up {
	from { transform: translateY(0); }
	to { transform: translateY(-50%); }
}

/* ===================================
   PLAN FINDER WIDGET
   =================================== */

.hostwebo-plan-finder {
	position: relative;
	width: 100%;
	max-width: 28rem;
	padding: 1.5rem;
	border-radius: 1.5rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Rimuovi effetto hover dal widget */
.hostwebo-plan-finder:hover {
	border-color: rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.05);
}

@media (min-width: 640px) {
	.hostwebo-plan-finder {
		padding: 2rem;
	}
}

.hostwebo-plan-finder h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin-bottom: 0.25rem;
	line-height: 1.3;
}

.hostwebo-plan-finder > p {
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
	margin-top: 0.25rem;
	margin-bottom: 0;
}

.finder-step {
	margin-top: 1.5rem;
	overflow: hidden;
}

.finder-step label {
	display: block;
	font-size: 0.875rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 0.25rem;
}

.finder-step select {
	display: block;
	width: 100%;
	padding: 0.5rem 0.75rem;
	margin-top: 0.25rem;
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 0.5rem;
	background: #0f1027;
	color: #ffffff;
	font-size: 0.875rem;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
	outline: none;
}

.finder-step select:focus {
	outline: 2px solid transparent;
	outline-offset: 2px;
	border-color: #818cf8;
	box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.1);
}

.finder-step button,
.finder-step a {
	width: 100%;
	display: block;
	padding: 0.75rem 1.5rem;
	margin-top: 1rem;
	border-radius: 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	transition: opacity 0.2s ease;
	cursor: pointer;
	border: none;
	text-align: center;
}

.finder-step .hostwebo-button-primary,
.finder-step button[class*="finder-next"],
.finder-step button[class*="finder-calculate"] {
	background: linear-gradient(90deg, #5143D9 0%, #6366f1 100%);
	color: #ffffff;
}

.finder-step .hostwebo-button-primary:hover,
.finder-step button[class*="finder-next"]:hover,
.finder-step button[class*="finder-calculate"]:hover {
	opacity: 0.9;
}

.finder-step .hostwebo-button-secondary,
.finder-step button[class*="finder-back"],
.finder-step button[class*="finder-reset"] {
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: transparent;
	color: #ffffff;
	margin-top: 0.5rem;
}

.finder-step .hostwebo-button-secondary:hover,
.finder-step button[class*="finder-back"]:hover,
.finder-step button[class*="finder-reset"]:hover {
	background: rgba(255, 255, 255, 0.05);
}

.finder-result {
	text-align: center;
}

.finder-result p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 0.875rem;
}

.result-plan-name {
	font-size: 2.5rem;
	font-weight: 700;
	margin: 0.5rem 0;
}

.result-plan-description {
	min-height: 3rem;
	font-size: 0.9375rem;
	margin-bottom: 1rem;
}

/* Allineamento Hero Content per widget a destra */
@media (min-width: 768px) {
	.hostwebo-hero-content {
		justify-items: start;
	}

	.hostwebo-plan-finder {
		justify-self: end;
	}
}

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

@media (max-width: 767px) {
	.hostwebo-section {
		padding: 3rem 0;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.5rem;
	}
}
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */

/* Base scroll reveal */
.scroll-reveal {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
	opacity: 1;
	transform: translateY(0);
}

/* Scroll reveal from left */
.scroll-reveal-left {
	opacity: 0;
	transform: translateX(-20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal-left.revealed {
	opacity: 1;
	transform: translateX(0);
}

/* Scroll reveal from right */
.scroll-reveal-right {
	opacity: 0;
	transform: translateX(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal-right.revealed {
	opacity: 1;
	transform: translateX(0);
}

/* Scroll reveal with scale */
.scroll-reveal-scale {
	opacity: 0;
	transform: scale(0.95);
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal-scale.revealed {
	opacity: 1;
	transform: scale(1);
}

/* Stagger animation for children */
[data-stagger-item] {
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.4s ease, transform 0.4s ease;
}

[data-stagger-item].stagger-item {
	opacity: 1;
	transform: translateY(0);
}
