/* ===================================================
   HostFive — Luxury Short-Term Rental Management
   Stile: Elegante / Lusso — Toni scuri, oro, serif
   =================================================== */

/* --- CSS Variables --- */
:root {
  --gold: #c6a962;
  --gold-light: #d4bc7c;
  --gold-dark: #a88b3d;
  --dark: #0d0d0d;
  --dark-2: #1a1a1a;
  --dark-3: #252525;
  --dark-4: #2f2f2f;
  --text: #e8e8e8;
  --text-muted: #9a9a9a;
  --white: #ffffff;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 8px 30px rgba(198, 169, 98, 0.15);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition:
    opacity 0.6s ease,
    visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  text-align: center;
}

.loader-text {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 4px;
  animation: pulse 1.5s ease-in-out infinite;
}

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

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(198, 169, 98, 0.1);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  position: relative;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 18px !important;
  border-radius: 4px;
  font-weight: 500 !important;
  font-size: 0.82rem !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

.nav-cta::after {
  display: none !important;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}
.lang-btn {
  width: 34px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid rgba(198, 169, 98, 0.35);
  background: rgba(26, 26, 26, 0.7);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: var(--transition);
}
.lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lang-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(198, 169, 98, 0.4);
  color: var(--gold);
}

.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(198, 169, 98, 0.08);
  transform: translateY(-2px);
}
.btn-hero-contrast {
  border-color: rgba(236, 206, 132, 0.95);
  background: rgba(198, 169, 98, 0.22);
  color: #f2dfb0;
  box-shadow: inset 0 0 0 1px rgba(13, 13, 13, 0.35);
}
.btn-hero-contrast:hover {
  background: rgba(198, 169, 98, 0.35);
  border-color: var(--gold-light);
  color: #fff;
}

.btn-lg {
  padding: 20px 48px;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* --- Hero Section --- */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?w=1920&q=80")
    center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.7) 0%,
    rgba(13, 13, 13, 0.5) 40%,
    rgba(13, 13, 13, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 100px 24px 120px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid rgba(198, 169, 98, 0.4);
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
}

#hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}

.gold-text {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.hero-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero-feature {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(198, 169, 98, 0.35);
  background: rgba(13, 13, 13, 0.45);
  backdrop-filter: blur(3px);
  color: #f4efe2;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.hero-feature i {
  color: var(--gold);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(198, 169, 98, 0.3);
}

/* Hero Platforms Logos */
.hero-platforms {
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.platforms-label {
  display: block;
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  opacity: 0.6;
}

.platforms-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.platform-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
  transition: var(--transition);
}

.platform-logo:hover {
  opacity: 1;
}

.platform-logo i {
  font-size: 1.6rem;
  color: var(--gold);
}

.platform-logo span {
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--text-muted);
}

.platform-logo small {
  font-size: 0.65rem;
  opacity: 0.7;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  pointer-events: none;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }
  50% {
    transform: scaleY(0.5);
    opacity: 0.3;
  }
}

/* --- Sections --- */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--dark-2);
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

.section-header .section-tag {
  padding-left: 0;
}

.section-header .section-tag::before {
  display: none;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* --- Chi Siamo --- */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame img {
  border-radius: 8px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-accent {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}

.section-text .lead {
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.section-text p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: var(--dark-2);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
}

.about-feature i {
  color: var(--gold);
  font-size: 1.1rem;
  width: 20px;
}

.about-feature span {
  font-weight: 500;
  font-size: 0.95rem;
}

.about-remote-note {
  background: linear-gradient(
    135deg,
    rgba(41, 108, 244, 0.22),
    rgba(41, 108, 244, 0.08)
  );
  border: 1px solid rgba(91, 148, 255, 0.42);
  color: #d8e7ff !important;
  border-radius: 10px;
  padding: 16px 18px;
  line-height: 1.6;
}

.about-profile {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: center;
}

.about-profile-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(198, 169, 98, 0.22);
  box-shadow: var(--shadow);
}

.about-profile-content {
  background: var(--dark-2);
  border: 1px solid rgba(198, 169, 98, 0.16);
  border-radius: 12px;
  padding: 32px;
}

.about-profile-content h3 {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  color: var(--white);
  margin-bottom: 14px;
}

.about-profile-content p {
  color: var(--text-muted);
  margin-bottom: 22px;
  line-height: 1.7;
}

.about-goals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-goal {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(198, 169, 98, 0.07);
  border-left: 3px solid var(--gold);
}

.about-goal i {
  color: var(--gold);
  width: 18px;
  flex-shrink: 0;
}

.about-goal span {
  font-size: 0.93rem;
  color: var(--text);
}

/* --- Servizi --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 169, 98, 0.2);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(198, 169, 98, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--gold);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.service-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transition: var(--transition);
}

.service-card:hover .service-line {
  width: 100%;
}

/* Service card highlight (value proposition) */
.service-card-highlight {
  border-color: rgba(198, 169, 98, 0.25);
  background: linear-gradient(
    135deg,
    var(--dark-3) 0%,
    rgba(198, 169, 98, 0.06) 100%
  );
  position: relative;
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}

/* --- Simulatore Guadagni --- */
#simulatore {
  overflow-x: hidden;
}

.simulator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.simulator-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px;
  overflow: hidden;
  max-width: 100%;
}

.simulator-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.simulator-card h3 i {
  color: var(--gold);
}

.simulator-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sim-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sim-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.sim-group select,
.sim-group input {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  max-width: 100%;
}

.sim-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C6A962' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.sim-group select option {
  background: var(--dark-2);
  color: var(--white);
}

.sim-group select:focus,
.sim-group input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 169, 98, 0.1);
}

/* Simulator Results */
.sim-results {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sim-results-header h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 24px;
}

.sim-comparison {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.sim-col {
  flex: 1;
  text-align: center;
  padding: 20px 16px;
  border-radius: 8px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sim-col-old {
  opacity: 0.7;
}

.sim-col-new {
  border-color: rgba(198, 169, 98, 0.3);
  background: rgba(198, 169, 98, 0.05);
}

.sim-col-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.sim-col-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.sim-col-new .sim-col-value {
  color: var(--gold);
}

.sim-col-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.sim-col-arrow {
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.sim-increase {
  margin-bottom: 20px;
}

.sim-increase-bar {
  width: 100%;
  height: 8px;
  background: var(--dark-2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.sim-increase-fill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light)
  );
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.sim-increase-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sim-increase-text strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold);
}

.sim-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  opacity: 0.6;
  font-style: italic;
}

/* Case Study */
.case-study {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 24px;
}

.case-study-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.25);
  color: #81c784;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.case-study h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.case-study-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.case-study-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}

.case-study:hover .case-study-image img {
  transform: scale(1.03);
}

.case-study-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.case-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.case-stat:last-child {
  border-bottom: none;
}

.case-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.case-stat-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
}

.case-stat-old {
  text-decoration: line-through;
  opacity: 0.5;
}

.case-stat-new {
  color: var(--gold);
}

.case-stat-highlight {
  background: rgba(198, 169, 98, 0.06);
  border-radius: 6px;
  padding: 12px 16px;
  margin-top: 4px;
}

.case-study-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}

/* Sim stats row */
.sim-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sim-stat-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
}

.sim-stat-card:hover {
  border-color: rgba(198, 169, 98, 0.2);
  transform: translateY(-3px);
}

.sim-stat-icon {
  width: 44px;
  height: 44px;
  background: rgba(198, 169, 98, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sim-stat-icon i {
  color: var(--gold);
  font-size: 1rem;
}

.sim-stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 2px;
}

.sim-stat-card span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* --- Come Funziona --- */
.steps-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.steps-timeline::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), rgba(198, 169, 98, 0.1));
}

.step {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  align-items: flex-start;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  flex-shrink: 0;
  width: 120px;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.3;
  text-align: center;
  line-height: 1;
  padding-top: 8px;
}

.step-content {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 32px;
  flex: 1;
  transition: var(--transition);
}

.step-content:hover {
  border-color: rgba(198, 169, 98, 0.2);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.step-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Confronto Competitors --- */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-2);
  min-width: 700px;
}

.comparison-table thead th {
  padding: 28px 20px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.compare-feature {
  width: 28%;
}

.compare-self {
  color: var(--text-muted);
  opacity: 0.7;
}

.compare-others {
  color: var(--text-muted);
}

.compare-us {
  background: rgba(198, 169, 98, 0.06);
  color: var(--gold);
  position: relative;
}

.compare-us-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 50px;
}

.comparison-table tbody td {
  padding: 18px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text);
}

.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.highlight-cell {
  background: rgba(198, 169, 98, 0.04);
  color: var(--gold) !important;
  font-weight: 600;
}

.comparison-table td small {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
}

.comparison-table .yes {
  color: #81c784;
  font-size: 1rem;
}

.comparison-table .no {
  color: #ef5350;
  opacity: 0.5;
  font-size: 0.9rem;
}

.time-high {
  color: #ef5350 !important;
}

.time-zero {
  color: #81c784 !important;
  font-weight: 700 !important;
}

/* --- Vantaggi --- */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.advantage {
  text-align: center;
  padding: 40px 24px;
  border-radius: 8px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.advantage:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 169, 98, 0.15);
}

.advantage-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: rgba(198, 169, 98, 0.08);
  border: 1px solid rgba(198, 169, 98, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantage-icon i {
  font-size: 1.6rem;
  color: var(--gold);
}

.advantage h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}

.advantage p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Testimonianze --- */
.testimonials-slider {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
}

.testimonial-stars {
  margin-bottom: 24px;
}

.testimonial-stars i {
  color: var(--gold);
  font-size: 1rem;
  margin: 0 2px;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.test-nav-btn {
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(198, 169, 98, 0.3);
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.test-nav-btn:hover {
  background: var(--gold);
  color: var(--dark);
}

.test-dots {
  display: flex;
  gap: 8px;
}

.test-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(198, 169, 98, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.test-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* --- Garanzia --- */
.guarantee-block {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  background: var(--dark-2);
  border: 2px solid rgba(198, 169, 98, 0.2);
  border-radius: 16px;
  padding: 60px;
  position: relative;
  overflow: hidden;
}

.guarantee-block::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(198, 169, 98, 0.06), transparent);
  border-radius: 50%;
}

.guarantee-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    rgba(198, 169, 98, 0.15),
    rgba(198, 169, 98, 0.05)
  );
  border: 2px solid rgba(198, 169, 98, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.guarantee-content {
  flex: 1;
}

.guarantee-content h2 {
  margin-bottom: 16px;
}

.guarantee-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}

.guarantee-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.guarantee-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(198, 169, 98, 0.04);
  border-radius: 8px;
  border: 1px solid rgba(198, 169, 98, 0.08);
}

.guarantee-point i {
  color: #81c784;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.guarantee-point span {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.5;
}

.guarantee-point strong {
  color: var(--white);
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(198, 169, 98, 0.2);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

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

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

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

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

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 28px 22px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-answer strong {
  color: var(--gold);
}

/* --- CTA Section --- */
.section-cta {
  background: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=80")
    center/cover no-repeat;
  position: relative;
}

.section-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* --- Contatti --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 169, 98, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 36px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(198, 169, 98, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

.contact-item strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-note {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 16px 18px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* --- Footer --- */
#footer {
  position: relative;
  background:
    radial-gradient(
      circle at 10% -20%,
      rgba(198, 169, 98, 0.15),
      transparent 45%
    ),
    radial-gradient(
      circle at 90% 120%,
      rgba(198, 169, 98, 0.08),
      transparent 50%
    ),
    var(--dark);
  border-top: 1px solid rgba(198, 169, 98, 0.18);
  padding: 52px 0 28px;
  overflow: hidden;
}

#footer .container {
  max-width: 1400px;
}

.footer-luxury {
  width: 100%;
  margin: 0;
  padding: 34px 34px 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.02),
    rgba(198, 169, 98, 0.04)
  );
  border: 1px solid rgba(198, 169, 98, 0.16);
  border-radius: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 20px 60px rgba(0, 0, 0, 0.35);
}

.footer-ornament {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}

.footer-ornament span {
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(198, 169, 98, 0),
    rgba(198, 169, 98, 0.42),
    rgba(198, 169, 98, 0)
  );
}

.footer-ornament i {
  color: rgba(198, 169, 98, 0.9);
  font-size: 0.9rem;
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-signature {
  margin: 0;
  max-width: 560px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  text-align: right;
}

.footer-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.footer-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.footer-chip i {
  color: var(--gold);
  font-size: 0.9rem;
}

.footer-chip:hover {
  color: var(--white);
  border-color: rgba(198, 169, 98, 0.35);
  background: rgba(198, 169, 98, 0.08);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.35px;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-legal a {
  font-size: 0.8rem;
  letter-spacing: 0.4px;
  color: var(--text-muted);
}

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

/* --- Legal Pages --- */
.legal-page {
  min-height: 100vh;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 36px;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  color: var(--white);
  margin: 28px 0 12px;
}

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

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 0 0 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.legal-content a:hover {
  color: var(--gold-light);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

@keyframes whatsappPulse {
  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6);
  }
}

/* --- AOS-like Animations (custom) --- */
[data-aos] {
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

[data-aos="fade-up"] {
  transform: translateY(40px);
}

[data-aos="fade-down"] {
  transform: translateY(-40px);
}

[data-aos="fade-right"] {
  transform: translateX(-40px);
}

[data-aos="fade-left"] {
  transform: translateX(40px);
}

[data-aos="zoom-in"] {
  transform: scale(0.9);
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0) scale(1);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-grid {
    gap: 48px;
  }

  .about-profile {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .sim-stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-signature {
    max-width: none;
    text-align: left;
  }

  .footer-pillars {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 0;
    transition:
      opacity 0.4s ease,
      visibility 0.4s ease;
    border-left: none;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
  }

  .nav-links.active {
    right: 0;
    opacity: 1;
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    font-size: 1.05rem !important;
    text-align: center;
    white-space: normal;
    display: block;
    padding: 14px 0 !important;
    letter-spacing: 1px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.3s ease;
  }

  .nav-links li:last-child a {
    border-bottom: none;
  }

  .nav-links a:hover {
    color: var(--gold) !important;
  }

  .nav-cta {
    display: block !important;
    width: 100% !important;
    padding: 16px 0 !important;
    font-size: 1.05rem !important;
    text-align: center;
    margin-top: 4px;
    border-bottom: none !important;
    border-radius: 0 !important;
    background: transparent !important;
    border: none !important;
    color: var(--gold) !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
  }

  .hamburger {
    display: block;
  }

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

  .section-image {
    order: -1;
  }

  .image-frame img {
    height: 350px;
  }

  .about-profile {
    margin-top: 56px;
  }

  .about-profile-image img {
    height: 280px;
  }

  .about-profile-content {
    padding: 28px 22px;
  }

  .about-remote-note {
    padding: 14px 16px;
  }

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

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

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

  .simulator-card {
    padding: 24px 18px;
  }

  .sim-comparison {
    flex-direction: column;
    gap: 12px;
  }

  .sim-col-arrow {
    transform: rotate(90deg);
  }

  .sim-col-value {
    font-size: 1.3rem;
  }

  .sim-stats-row {
    grid-template-columns: 1fr;
  }

  .case-study {
    padding: 24px 18px;
  }

  .sim-increase-text strong {
    font-size: 1.2rem;
  }

  .simulator-card h3 {
    font-size: 1.1rem;
  }

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

  #footer {
    padding: 40px 0 20px;
  }

  .footer-luxury {
    padding: 24px 20px 18px;
  }

  .footer-main {
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
  }

  .footer-signature {
    text-align: center;
    font-size: 0.9rem;
  }

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

  .footer-bottom {
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .lang-switch {
    margin-left: auto;
    margin-right: 12px;
  }
  .lang-btn {
    width: 32px;
    height: 26px;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
  }

  .hero-feature {
    width: 100%;
    max-width: 330px;
    justify-content: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .steps-timeline::before {
    display: none;
  }

  .step {
    flex-direction: column;
    gap: 16px;
  }

  .step-number {
    width: auto;
    text-align: left;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
  }

  .legal-content {
    padding: 28px 22px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .contact-form {
    padding: 28px;
  }

  /* Guarantee responsive */
  .guarantee-block {
    flex-direction: column;
    padding: 36px 28px;
    gap: 28px;
  }

  .guarantee-points {
    grid-template-columns: 1fr;
  }

  /* Platforms responsive */
  .platforms-logos {
    gap: 20px;
  }

  .platform-logo span {
    display: none;
  }

  .platform-logo i {
    font-size: 1.8rem;
  }

  /* Comparison table */
  .comparison-table {
    min-width: 600px;
  }
}

@media (max-width: 480px) {
  #hero h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .image-accent {
    display: none;
  }

  .simulator-card {
    padding: 20px 14px;
  }

  .sim-col-value {
    font-size: 1.15rem;
  }

  .sim-col-label {
    font-size: 0.7rem;
  }

  .case-study {
    padding: 20px 14px;
  }

  .case-study h3 {
    font-size: 1.05rem;
  }

  .case-stat {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .sim-stat-card {
    padding: 16px 12px;
  }

  .btn-full {
    padding: 12px 16px !important;
    font-size: 0.85rem !important;
  }
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card {
  background: var(--dark-2);
  border-radius: 16px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(198, 169, 98, 0.1);
  transition:
    transform 0.3s,
    border-color 0.3s;
}
.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #d4b76a);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--dark);
}
.team-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 4px;
}
.team-role {
  display: block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.team-card p {
  color: var(--gray);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== VIDEO ===== */
.video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid rgba(198, 169, 98, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.video-container iframe,
.video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-placeholder {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(0.5);
  transition: filter 0.3s;
}
.video-placeholder:hover img {
  filter: brightness(0.35);
}
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--dark);
  z-index: 2;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  box-shadow: 0 0 0 0 rgba(198, 169, 98, 0.4);
  animation: pulseBtn 2s infinite;
}
@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(198, 169, 98, 0.4);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(198, 169, 98, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(198, 169, 98, 0);
  }
}
.video-play-btn:hover {
  transform: scale(1.1);
}
.video-play-text {
  z-index: 2;
  color: #fff;
  margin-top: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== MAPPA / DOVE OPERIAMO ===== */
.map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.map-container {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(198, 169, 98, 0.2);
}
.city-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--dark-2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(198, 169, 98, 0.08);
  transition:
    border-color 0.3s,
    transform 0.3s;
}
.city-card:hover {
  border-color: var(--gold);
  transform: translateX(6px);
}
.city-card-main {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(198, 169, 98, 0.08), transparent);
}
.city-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(198, 169, 98, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.city-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 2px;
}
.city-card span {
  font-size: 0.85rem;
  color: var(--gray);
}
.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== HOSTFIVE SECTION ===== */
.hf-intro {
  max-width: 800px;
  margin: 0 auto 60px;
}

.hf-intro-card {
  background: var(--dark-3);
  border: 1px solid rgba(198, 169, 98, 0.15);
  border-radius: 16px;
  padding: 48px;
  text-align: center;
}

.hf-intro-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.hf-intro-card p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}

.hf-highlight {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  background: rgba(198, 169, 98, 0.08);
  border: 1px solid rgba(198, 169, 98, 0.2);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.hf-highlight i {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.hf-highlight span {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.hf-highlight strong {
  color: var(--gold);
}

/* Grid: Offer + Bring */
.hf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 60px;
}

.hf-offer-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  transition: var(--transition);
}

.hf-offer-card:hover {
  border-color: rgba(198, 169, 98, 0.2);
  transform: translateY(-4px);
}

.hf-offer-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hf-offer-card h3 i {
  color: var(--gold);
  font-size: 1.1rem;
}

.hf-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hf-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

.hf-list li i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

/* Pricing */
.hf-pricing {
  max-width: 700px;
  margin: 0 auto 48px;
}

.hf-pricing-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
}

.hf-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hf-tab {
  padding: 12px 28px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.hf-tab:hover {
  border-color: rgba(198, 169, 98, 0.3);
  color: var(--gold);
}

.hf-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 600;
}

.hf-tab-content {
  position: relative;
}

.hf-tab-pane {
  display: none;
  animation: fadeInUp 0.4s ease forwards;
}

.hf-tab-pane.active {
  display: block;
}

.hf-plan-card {
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hf-plan-featured {
  border-color: rgba(198, 169, 98, 0.35);
  background: linear-gradient(
    135deg,
    var(--dark-3) 0%,
    rgba(198, 169, 98, 0.06) 100%
  );
}

.hf-plan-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.hf-plan-header {
  margin-bottom: 28px;
  text-align: center;
}

.hf-plan-header h4 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.hf-plan-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.hf-plan-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.hf-plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.hf-plan-features li i {
  color: #81c784;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hf-cta {
  text-align: center;
  margin-top: 16px;
}

/* ===== HOSTFIVE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hf-grid {
    grid-template-columns: 1fr;
  }

  .hf-intro-card {
    padding: 32px 24px;
  }

  .hf-offer-card {
    padding: 28px 24px;
  }

  .hf-tabs {
    gap: 6px;
  }

  .hf-tab {
    padding: 10px 18px;
    font-size: 0.82rem;
  }

  .hf-plan-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hf-intro-card h3 {
    font-size: 1.2rem;
  }

  .hf-tabs {
    flex-direction: column;
  }

  .hf-tab {
    width: 100%;
    text-align: center;
  }
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(198, 169, 98, 0.2);
  padding: 20px 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s;
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.cookie-text i {
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.cookie-text p {
  color: var(--gray);
  font-size: 0.9rem;
  margin: 0;
}
.cookie-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-sm {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
}
.cookie-settings {
  background: transparent;
  border: 1px solid var(--gray);
  color: var(--gray);
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  transition:
    border-color 0.3s,
    color 0.3s;
}
.cookie-settings:hover {
  border-color: #fff;
  color: #fff;
}

/* ===== RESPONSIVE: NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .map-grid {
    grid-template-columns: 1fr;
  }
  .map-container {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  .cookie-text {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 60px;
    height: 60px;
    min-height: 60px;
    border-radius: 50%;
    padding: 0;
    gap: 0;
  }
}

@media (max-width: 480px) {
  .video-play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
}
