/* =========================================
   TOPCHAUFFEUR — Design System v10
   Optimized for Performance • Fast Loading
   ========================================= */

/* CSS Layer for faster parsing */
@layer reset, base, components, utilities;

/* =========================================
   CSS VARIABLES - Complete System
   ========================================= */

:root {
  /* Gold Palette */
  --gold-50: #FDF9F0;
  --gold-100: #F9F0DB;
  --gold-200: #F2E0B8;
  --gold-300: #E8CC8A;
  --gold-400: #D9B35C;
  --gold-500: #C9A962;
  --gold-600: #B89850;
  --gold-700: #9A7D42;
  --gold-800: #7C6536;
  --gold-900: #5E4D2A;
  
  /* Neutral Palette */
  --neutral-0: #FFFFFF;
  --neutral-50: #FAFAFA;
  --neutral-100: #F5F5F5;
  --neutral-200: #EBEBEB;
  --neutral-300: #E0E0E0;
  --neutral-400: #BFBFBF;
  --neutral-500: #8C8C8C;
  --neutral-600: #666666;
  --neutral-700: #434343;
  --neutral-800: #262626;
  --neutral-900: #0A0A0A;
  
  /* Semantic Colors - Light Mode */
  --bg-body: #FAFAF8;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F5F5F3;
  --bg-surface-dark: #0A0A0A;
  
  --text-primary: #0A0A0A;
  --text-secondary: #434343;
  --text-tertiary: #666666;
  --text-inverse: #FFFFFF;
  
  --border-subtle: rgba(0, 0, 0, 0.06);
  --border-default: rgba(0, 0, 0, 0.1);
  --border-strong: rgba(0, 0, 0, 0.2);
  --border-gold: rgba(201, 169, 98, 0.4);
  
  --accent-primary: #C9A962;
  --accent-hover: #B89850;
  --accent-muted: rgba(201, 169, 98, 0.12);
  
  /* Shadows - simplified for performance */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 2px 12px rgba(201, 169, 98, 0.25);
  
  /* Spacing (4px base) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;
  
  /* Layout */
  --header-height: 80px;
  --container-max: 1280px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  /* Typography */
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  
  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Missing variable definition */
  --space-14: 56px;
}

/* =========================================
   DARK MODE - Complete Override
   ========================================= */

[data-theme="dark"] {
  --bg-body: #0A0A0A;
  --bg-surface: #141414;
  --bg-surface-elevated: #1F1F1F;
  --bg-surface-dark: #0A0A0A;
  
  --text-primary: #FFFFFF;
  --text-secondary: #CCCCCC;
  --text-tertiary: #999999;
  --text-inverse: #0A0A0A;
  
  --border-subtle: rgba(255, 255, 255, 0.1);
  --border-default: rgba(255, 255, 255, 0.15);
  --border-strong: rgba(255, 255, 255, 0.25);
  --border-gold: rgba(201, 169, 98, 0.5);
  
  --accent-muted: rgba(201, 169, 98, 0.2);
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.8);
}

/* =========================================
   RESET & PERFORMANCE
   ========================================= */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-body);
  padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Performance optimizations */
img, video {
  max-width: 100%;
  height: auto;
}

/* Fix 1: Prevent images from overflowing on small screens */
img {
  max-height: 100%;
}

/* Content visibility for sections - disable on mobile for faster rendering */
@media (min-width: 768px) {
  .section {
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
  }
  
  .section:first-of-type,
  .hero {
    content-visibility: visible;
  }
}

/* Fast rendering for above-fold content */
.hero, .features-bar {
  content-visibility: visible !important;
}

/* Slow connection optimizations */
/* Slow connection optimizations */
.slow-connection .hero {
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1a2e 50%, #16213e 100%);
}

/* Reduce motion for better performance */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-image {
    display: none !important;
  }
}

::selection {
  background: var(--accent-primary);
  color: var(--neutral-900);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-body);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 3px;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 { font-size: clamp(36px, 5vw, 64px); }
h2 { font-size: clamp(28px, 3.5vw, 44px); }
h3 { font-size: clamp(20px, 2vw, 24px); }

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* =========================================
   LAYOUT
   ========================================= */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.section {
  padding: var(--space-16) 0;
}

.section-alt {
  background: var(--bg-surface);
}

.section-dark {
  background: var(--bg-surface-dark);
  color: #FFFFFF;
}

.section-dark p,
.section-dark .text-secondary {
  color: rgba(255, 255, 255, 0.8);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: var(--space-10);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: var(--space-12);
  }
}

@media (min-width: 1024px) {
  .section-header {
    margin-bottom: var(--space-16);
  }
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-5);
}

.section-label::before,
.section-label::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--accent-primary);
}

.section-title {
  margin-bottom: var(--space-4);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  height: 48px;
  padding: 0 var(--space-6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-primary);
  color: var(--neutral-900);
  box-shadow: 0 2px 8px rgba(201, 169, 98, 0.35);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201, 169, 98, 0.45);
}

.btn-secondary {
  background: var(--text-primary);
  color: var(--bg-surface);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-default);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  background: var(--accent-muted);
}

.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
}

.btn-outline-white:hover {
  background: var(--text-inverse);
  color: var(--neutral-900);
  border-color: var(--text-inverse);
  transform: translateY(-2px);
}

.btn-lg {
  height: 54px;
  padding: 0 var(--space-8);
  font-size: 12px;
}

.btn-block {
  width: 100%;
}

@media (min-width: 768px) {
  .btn {
    font-size: 12px;
    height: 52px;
  }
  
  .btn-lg {
    height: 60px;
    font-size: 13px;
  }
}

/* =========================================
   WHATSAPP FLOAT
   ========================================= */

.whatsapp-float {
  position: fixed;
  bottom: var(--space-5);
  right: var(--space-5);
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s var(--ease-spring);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: var(--space-6);
    right: var(--space-6);
    width: 60px;
    height: 60px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

/* =========================================
   HEADER - Pixel Perfect
   ========================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--bg-body);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header-scrolled {
  box-shadow: var(--shadow-md);
}

.header-content {
  height: 80px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  height: 40px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
  color: var(--neutral-900);
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-name {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 2px;
}

.logo-tagline {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-primary);
  line-height: 1;
}

/* Header Center */
.header-center {
  display: none;
  justify-content: center;
}

/* Nav Desktop - Luxury Style */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-desktop a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-desktop a:hover {
  color: var(--text-primary);
  background: var(--bg-surface-elevated);
}

.nav-desktop a.active {
  color: var(--accent-primary);
  background: var(--accent-muted);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-left: auto;
}

@media (max-width: 767px) {
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header-actions {
    gap: var(--space-1);
  }
  
  .theme-btn {
    width: 44px;
    height: 44px;
  }
}

/* Language Dropdown - Fixed */
.lang-dropdown {
  display: block;
  position: relative;
  z-index: 100;
}

/* Mobile Language Selector - Compact */
@media (max-width: 767px) {
  .lang-dropdown {
    position: static;
  }
  
  .lang-dropdown-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    justify-content: center;
  }
  
  .lang-dropdown-btn .lang-current {
    font-size: 13px;
  }
  
  .lang-dropdown-btn svg {
    display: none;
  }
  
  .lang-dropdown-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) translateY(-10px);
    min-width: 200px;
    box-shadow: var(--shadow-xl);
  }
  
  .lang-dropdown.open .lang-dropdown-menu {
    transform: translateX(-50%) translateY(0);
  }
}

.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

.lang-dropdown-btn:hover {
  border-color: var(--border-default);
  color: var(--text-primary);
}

.lang-dropdown-btn svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-dropdown.open .lang-dropdown-btn svg {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 160px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 101;
  overflow: hidden;
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: 100%;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-subtle);
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s;
}

.lang-option:last-child {
  border-bottom: none;
}

.lang-option:hover {
  background: var(--accent-muted);
  color: var(--text-primary);
}

.lang-option.active {
  color: var(--accent-primary);
  background: var(--accent-muted);
}

.lang-flag {
  font-size: 16px;
  line-height: 1;
}

.theme-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
}

.theme-btn:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
}

/* Menu Toggle */
.menu-toggle {
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
}

.menu-toggle:hover {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-muted);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
}

.menu-toggle.active {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
}

.menu-toggle.active span {
  background: var(--neutral-900);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   MOBILE MENU
   ========================================= */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu.open::before {
  opacity: 1;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100dvh;
  height: 100vh;
  width: min(380px, 85vw);
  max-width: 100%;
  background: var(--bg-surface);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 80px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.open .mobile-panel {
  transform: translateX(0);
  transition: transform 0.35s var(--ease-smooth);
}

.mobile-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  min-height: var(--header-height);
  padding: 0 var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
  flex-shrink: 0;
}

.mobile-panel-header .logo {
  flex-shrink: 0;
}

.mobile-panel-header .mobile-menu-close {
  flex-shrink: 0;
  margin-left: auto;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-close:hover {
  color: var(--accent-primary);
  border-color: var(--accent-primary);
  transform: rotate(90deg);
}

.mobile-nav {
  flex: 0 0 auto;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-lg);
  transition: all 0.35s var(--ease-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid transparent;
}

.mobile-nav a::after {
  content: "→";
  font-size: 16px;
  color: var(--accent-primary);
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.35s var(--ease-smooth);
}

.mobile-nav a:hover {
  background: var(--accent-muted);
  color: var(--accent-primary);
  padding-left: var(--space-6);
  border-color: var(--border-gold);
}

.mobile-nav a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.mobile-panel-footer {
  padding: var(--space-5) var(--space-6);
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, var(--bg-surface-elevated) 0%, var(--bg-surface) 100%);
  flex-shrink: 0;
}

/* Nascondi selettore lingue nel menu mobile (già presente nell'header) */
.mobile-lang-section {
  display: none;
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.mobile-contact a {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
  padding: var(--space-2) 0;
}

.mobile-contact a:hover {
  color: var(--accent-primary);
  transform: translateX(6px);
}

.mobile-contact svg {
  width: 20px;
  height: 20px;
  color: var(--accent-primary);
}

.mobile-lang-section {
  padding-top: var(--space-5);
  border-top: 1px solid var(--border-subtle);
}

.mobile-lang-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: var(--space-3);
  display: block;
}

.mobile-lang-buttons {
  display: flex;
  gap: var(--space-3);
}

.mobile-lang-buttons .lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 40px;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  background: var(--bg-surface);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s var(--ease-smooth);
}

.mobile-lang-buttons .lang-btn:hover {
  border-color: var(--border-gold);
  color: var(--text-primary);
}

.mobile-lang-buttons .lang-btn.active {
  background: var(--accent-primary);
  color: var(--neutral-900);
  border-color: var(--accent-primary);
  box-shadow: var(--shadow-gold);
}

/* =========================================
   HERO - Video Background
   ========================================= */

.hero {
  min-height: calc(100vh - var(--header-height));
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.85) 35%,
    rgba(0, 0, 0, 0.5) 70%,
    rgba(0, 0, 0, 0.3) 100%
  );
  z-index: 1;
}

/* Darken the hero image for better text contrast */
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
  filter: brightness(0.65) contrast(1.15) saturate(1.1);
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: var(--text-inverse);
  padding: var(--space-12) 0 var(--space-16);
}

@media (min-width: 768px) {
  .hero-content {
    padding: var(--space-16) 0;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: var(--space-20) 0;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-primary);
  padding: var(--space-2) var(--space-4);
  border: 1px solid rgba(201, 169, 98, 0.5);
  border-radius: var(--radius-full);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  margin-bottom: var(--space-6);
}

.hero-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  color: #FFFFFF;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-title .gold {
  color: var(--accent-primary);
}

.hero-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-10);
  max-width: 540px;
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-14);
}

.hero-cta .btn {
  width: 100%;
  height: 56px;
  font-size: 13px;
  letter-spacing: 0.15em;
}

@media (min-width: 480px) {
  .hero-cta {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .hero-cta .btn {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .hero-cta {
    margin-bottom: var(--space-14);
  }
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
  padding-top: var(--space-10);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 480px;
}

@media (max-width: 479px) {
  .hero-stats {
    gap: var(--space-3);
  }
  
  .stat-value {
    font-size: 22px;
  }
  
  .stat-label {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
}

.stat-item {
  text-align: left;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--accent-primary);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-2);
  text-shadow: 0 2px 8px rgba(201, 169, 98, 0.3);
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  pointer-events: none;
}

@media (max-width: 767px) {
  .scroll-indicator {
    display: none;
  }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =========================================
   FEATURES BAR - Pixel Perfect
   ========================================= */

.features-bar {
  background: linear-gradient(180deg, var(--neutral-900) 0%, #111111 100%);
  border-top: 1px solid rgba(201, 169, 98, 0.2);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  position: relative;
  z-index: 10;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-4);
  color: #FFFFFF;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s var(--ease-smooth);
}

.feature-item:nth-child(2n) {
  border-right: none;
}

.feature-item:nth-child(3),
.feature-item:nth-child(4) {
  border-bottom: none;
}

.feature-item:hover {
  background: rgba(201, 169, 98, 0.08);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.25) 0%, rgba(201, 169, 98, 0.08) 100%);
  border: 1.5px solid var(--accent-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(201, 169, 98, 0.2);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.feature-content h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FFFFFF;
  margin: 0;
  line-height: 1;
}

.feature-content p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* =========================================
   STORY SECTION
   ========================================= */

.story-grid {
  display: grid;
  gap: var(--space-16);
  align-items: center;
}

.story-content {
  order: 2;
}

.story-visual {
  order: 1;
  position: relative;
}

.story-visual-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.story-visual-main img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.story-visual-badge {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  background: var(--bg-surface);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 120px;
}

.story-visual-badge .number {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 500;
  color: var(--accent-primary);
  line-height: 1;
}

.story-visual-badge .label {
  font-size: 10px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.story-quote-link {
  display: block;
  text-decoration: none;
  margin-top: var(--space-6);
  transition: transform 0.3s var(--ease-smooth);
}

.story-quote-link:hover {
  transform: translateY(-4px);
}

.story-quote {
  position: relative;
  padding: var(--space-6);
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--accent-primary);
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease-smooth);
}

.story-quote-link:hover .story-quote {
  box-shadow: var(--shadow-lg);
  border-left-width: 4px;
}

.story-quote::before {
  content: """;
  font-family: var(--font-serif);
  font-size: 72px;
  color: var(--accent-primary);
  opacity: 0.15;
  position: absolute;
  top: -8px;
  left: var(--space-5);
  line-height: 1;
}

.story-quote p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--text-primary);
  position: relative;
  z-index: 1;
  line-height: 1.6;
}

.story-quote cite {
  display: block;
  margin-top: var(--space-4);
  font-size: 13px;
  font-style: normal;
  color: var(--text-secondary);
}

.quote-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding: var(--space-2) var(--space-4);
  background: var(--accent-muted);
  color: var(--accent-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease-smooth);
}

.quote-badge svg {
  width: 12px;
  height: 12px;
}

.story-quote-link:hover .quote-badge {
  background: var(--accent-primary);
  color: var(--neutral-900);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  margin-top: var(--space-10);
  padding-left: var(--space-5);
  border-left: 1.5px solid var(--border-subtle);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-5) - 5px);
  top: 4px;
  width: 10px;
  height: 10px;
  background: var(--accent-primary);
  border-radius: 50%;
  border: 2px solid var(--bg-body);
  box-shadow: 0 0 0 1.5px var(--accent-primary);
}

.timeline-year {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-primary);
  margin-bottom: var(--space-1);
}

.timeline-title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.timeline-desc {
  color: var(--text-secondary);
  font-size: 14px;
}

/* =========================================
   STANDARDS
   ========================================= */

.standards-grid {
  display: grid;
  gap: var(--space-5);
}

.standard-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all 0.3s var(--ease-smooth);
}

.standard-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.standard-number {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-primary);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
}

.standard-icon-wrapper {
  width: 48px;
  height: 48px;
  background: var(--accent-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--accent-primary);
}

.standard-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.standard-title {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.standard-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

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

.services-grid {
  display: grid;
  gap: var(--space-5);
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease-smooth);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background-color: var(--bg-surface-elevated);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.service-badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--accent-primary);
  color: var(--neutral-900);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
}

.service-content {
  padding: var(--space-5);
}

@media (min-width: 768px) {
  .service-content {
    padding: var(--space-6);
  }
}

.service-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.service-desc {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--text-primary);
}

.service-feature svg {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
  flex-shrink: 0;
}

/* =========================================
   FLEET
   ========================================= */

.fleet-showcase {
  display: flex;
  flex-direction: column;
  gap: var(--space-20);
}

.fleet-item {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

.fleet-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.fleet-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.fleet-badge {
  position: absolute;
  top: var(--space-5);
  left: var(--space-5);
  background: rgba(10, 10, 10, 0.9);
  color: var(--accent-primary);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
}

.fleet-info h3 {
  font-size: 28px;
  margin-bottom: var(--space-3);
}

.fleet-info > p {
  font-size: 16px;
  margin-bottom: var(--space-6);
  line-height: 1.75;
}

.fleet-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.fleet-spec {
  text-align: center;
}

.fleet-spec-value {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--accent-primary);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-1);
}

.fleet-spec-label {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.pricing-grid {
  display: grid;
  gap: var(--space-5);
}

.pricing-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  transition: all 0.35s var(--ease-smooth);
  position: relative;
}

.pricing-card:hover {
  border-color: var(--accent-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
  background: linear-gradient(180deg, var(--bg-surface-elevated) 0%, var(--bg-body) 100%);
  border: 2px solid var(--accent-primary);
  box-shadow: var(--shadow-gold);
}

[data-theme="dark"] .pricing-card.featured {
  background: linear-gradient(180deg, #141414 0%, #0A0A0A 100%);
}

.pricing-card.featured:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.25);
}

.pricing-card.featured .pricing-name,
.pricing-card.featured .pricing-price .amount {
  color: var(--text-primary);
}

.pricing-card.featured .pricing-desc {
  color: var(--text-secondary);
}

.pricing-card.featured .pricing-feature {
  color: var(--text-primary);
}

[data-theme="dark"] .pricing-card.featured .pricing-name,
[data-theme="dark"] .pricing-card.featured .pricing-price .amount {
  color: #FFFFFF;
}

[data-theme="dark"] .pricing-card.featured .pricing-desc {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .pricing-card.featured .pricing-feature {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: var(--space-6);
  background: var(--accent-primary);
  color: var(--neutral-900);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-name {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: var(--space-5);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: var(--space-1);
}

.pricing-price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-primary);
}

.pricing-price .amount {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

@media (min-width: 768px) {
  .pricing-price .amount {
    font-size: 52px;
  }
}

.pricing-price .period {
  font-size: 13px;
  color: var(--text-tertiary);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 14px;
}

.pricing-feature svg {
  width: 16px;
  height: 16px;
  color: var(--accent-primary);
}

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: var(--space-6);
}

/* =========================================
   PROCESS - Pixel Perfect Luxury
   ========================================= */

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* Horizontal connecting line for desktop */
@media (min-width: 1024px) {
  .process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 16.67%;
    right: 16.67%;
    height: 1px;
    background: var(--border-subtle);
    z-index: 0;
  }
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  position: relative;
}

@media (min-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .process-step {
    padding: 0 var(--space-4);
  }
}

.process-number {
  width: 72px;
  height: 72px;
  background: var(--bg-surface);
  color: var(--accent-primary);
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 70px;
  text-align: center;
  border: 2px solid var(--accent-primary);
  border-radius: 50%;
  margin-bottom: var(--space-6);
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .process-number {
    width: 80px;
    height: 80px;
    font-size: 32px;
    line-height: 78px;
    margin-bottom: var(--space-8);
  }
}

.process-content {
  max-width: 280px;
}

.process-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  letter-spacing: 0;
}

@media (min-width: 1024px) {
  .process-title {
    font-size: 22px;
    margin-bottom: var(--space-4);
  }
}

.process-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.7;
}

@media (min-width: 1024px) {
  .process-desc {
    font-size: 15px;
  }
}

/* =========================================
   REVIEWS
   ========================================= */

.reviews-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-surface);
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius-full);
  margin-top: var(--space-5);
}

.rating-stars {
  display: flex;
  gap: 2px;
  color: var(--accent-primary);
}

.rating-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.rating-score {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}

.rating-count {
  font-size: 13px;
  color: var(--text-secondary);
}

.reviews-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  padding: var(--space-3) var(--space-5);
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s var(--ease-smooth);
}

.reviews-link:hover {
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.reviews-link svg {
  width: 18px;
  height: 18px;
  color: #4285F4;
}

.reviews-grid {
  display: grid;
  gap: var(--space-5);
}

.review-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: all 0.35s var(--ease-smooth);
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--accent-primary);
}

@media (min-width: 768px) {
  .review-card {
    padding: var(--space-6);
  }
}

.review-header {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.review-avatar {
  width: 48px;
  height: 48px;
  background: var(--accent-primary);
  color: var(--neutral-900);
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-meta {
  flex: 1;
}

.review-author {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  display: block;
}

.review-date {
  font-size: 12px;
  color: var(--text-tertiary);
}

.review-stars {
  color: var(--accent-primary);
  font-size: 13px;
}

.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

.review-service {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  color: var(--text-tertiary);
}

.review-service strong {
  color: var(--accent-primary);
  font-weight: 500;
}

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

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

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

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

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

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s;
}

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

.faq-answer-inner {
  padding: 0 var(--space-6) var(--space-5);
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.75;
}

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

.contact-grid {
  display: grid;
  gap: var(--space-14);
}

.contact-info {
  order: 2;
}

.contact-form-wrapper {
  order: 1;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5);
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}

.contact-method:hover {
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-900);
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
}

.contact-method-content {
  flex: 1;
}

.contact-method-label {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2px;
}

.contact-method-value {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .contact-form {
    padding: var(--space-8);
  }
}

/* Contact Map */
.contact-map {
  margin-top: var(--space-6);
  background: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s var(--ease-smooth);
}

.contact-map:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.contact-map-header {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-surface-elevated);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-map-header svg {
  width: 18px;
  height: 18px;
  color: var(--accent-primary);
}

.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  transition: filter 0.3s;
}

.contact-map:hover .contact-map-wrapper iframe {
  filter: grayscale(0%);
}

.contact-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: var(--accent-muted);
  color: var(--accent-primary);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s var(--ease-smooth);
}

.contact-map-link:hover {
  background: var(--accent-primary);
  color: var(--neutral-900);
}

.contact-map-link svg {
  width: 14px;
  height: 14px;
}

.form-group {
  margin-bottom: var(--space-5);
}

.form-row {
  display: grid;
  gap: var(--space-5);
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  height: 52px;
  padding: 0 var(--space-4);
  background: var(--bg-body);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 16px; /* Prevents iPhone zoom on focus */
  transition: all 0.25s var(--ease-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 4px var(--accent-muted);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

.form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

[data-theme="dark"] .form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
}

.form-textarea {
  height: auto;
  min-height: 120px;
  padding: var(--space-3) var(--space-4);
  resize: vertical;
}

.form-hint {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: var(--space-3);
  text-align: center;
}

/* =========================================
   FOOTER - Dark Mode Compatible
   ========================================= */

/* =========================================
   FOOTER - Gucci Precision • Pixel Perfect
   ========================================= */

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: var(--space-20) 0 var(--space-8);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--accent-primary) 20%,
    var(--accent-primary) 80%,
    transparent 100%
  );
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  gap: var(--space-16);
  margin-bottom: var(--space-12);
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-hover));
  color: var(--neutral-900);
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-gold);
}

.footer-logo-text {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-primary);
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.footer-social {
  display: flex;
  gap: var(--space-3);
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-default);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  transition: all 0.3s var(--ease-smooth);
}

.footer-social a:hover {
  background: var(--accent-primary);
  border-color: var(--accent-primary);
  color: var(--neutral-900);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-gold);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8) var(--space-6);
}

@media (max-width: 767px) {
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6) var(--space-4);
  }
}

@media (max-width: 639px) {
  .footer {
    padding: var(--space-12) 0 var(--space-6);
  }
  
  .footer-grid {
    gap: var(--space-10);
    margin-bottom: var(--space-8);
  }
  
  .footer-brand {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  /* Footer links impaginati in modo pulito su mobile */
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8) var(--space-6);
    text-align: left;
    margin: 0 auto;
  }
  
  .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: var(--space-2) 0;
  }
  
  .footer-col h4 {
    margin-bottom: var(--space-4);
    padding-bottom: var(--space-2);
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  
  .footer-col h4::after {
    left: 0;
    transform: none;
    width: 24px;
    height: 2px;
  }
  
  .footer-col ul {
    align-items: flex-start;
    gap: var(--space-3);
    width: 100%;
  }
  
  .footer-col a {
    justify-content: flex-start;
    font-size: 14px;
    padding: var(--space-2) 0;
    color: var(--text-tertiary);
  }
  
  .footer-col a::before {
    display: none;
  }
  
  .footer-col a:hover {
    color: var(--accent-primary);
    transform: translateX(3px);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: var(--space-6);
  }
  
  .footer-copyright {
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
    gap: var(--space-4);
  }
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: var(--space-5);
  position: relative;
  padding-bottom: var(--space-3);
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--accent-primary);
  border-radius: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-col a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease-smooth);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 2px 0;
}

.footer-col a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.25s var(--ease-smooth);
}

.footer-col a:hover {
  color: var(--accent-primary);
  transform: translateX(4px);
}

.footer-col a:hover::before {
  width: 12px;
}

.footer-bottom {
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: center;
  position: relative;
}

.footer-copyright {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-6);
}

.footer-legal a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease-smooth);
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-primary);
  transition: width 0.25s var(--ease-smooth);
}

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

.footer-legal a:hover::after {
  width: 100%;
}

/* Developer Credit */
.footer-credit {
  margin-top: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}

.footer-credit p {
  font-size: 13px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.footer-credit .heart {
  color: #e74c3c;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.footer-credit strong {
  color: var(--accent-primary);
  font-weight: 600;
}

.footer-credit .dev-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  color: #25D366;
  text-decoration: none;
  margin-left: var(--space-2);
  transition: all 0.3s ease;
}

.footer-credit .dev-whatsapp:hover {
  color: #128C7E;
  transform: translateY(-1px);
}

@media (max-width: 639px) {
  .footer-credit p {
    flex-direction: column;
    gap: var(--space-1);
  }
  
  .footer-credit .dev-whatsapp {
    margin-left: 0;
    margin-top: var(--space-1);
  }
}

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

.page-header {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-body) 100%);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-8);
  text-align: center;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-primary);
  border-radius: 2px;
}

.page-header h1 {
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: clamp(28px, 4vw, 44px);
}

.page-header p {
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-header {
    padding: calc(var(--header-height) + var(--space-16)) 0 var(--space-10);
  }
  
  .page-header p {
    font-size: 17px;
  }
}

.breadcrumb {
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.breadcrumb nav {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 13px;
  color: var(--text-tertiary);
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.breadcrumb-current {
  color: var(--text-primary);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-8) 0 var(--space-12);
}

.legal-content h1 {
  margin-bottom: var(--space-6);
  font-size: clamp(28px, 4vw, 36px);
}

.legal-content h2 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin: var(--space-8) 0 var(--space-4);
  color: var(--text-primary);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--border-subtle);
  position: relative;
}

.legal-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-primary);
}

.legal-content h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin: var(--space-6) 0 var(--space-3);
  color: var(--text-primary);
}

.legal-content p {
  margin-bottom: var(--space-4);
  line-height: 1.8;
  font-size: 15px;
}

.legal-content ul {
  list-style: disc;
  padding-left: var(--space-5);
  margin-bottom: var(--space-4);
}

.legal-content li {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .legal-content {
    padding: var(--space-12) 0 var(--space-16);
  }
  
  .legal-content h2 {
    font-size: 19px;
  }
}

.legal-content a {
  color: var(--accent-primary);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.legal-content a:hover {
  border-bottom-color: var(--accent-primary);
}

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

/* =========================================
   ANIMATIONS - Performance Optimized
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer {
    padding: var(--space-24) 0 var(--space-10);
  }
  
  .footer-grid {
    gap: var(--space-16);
    margin-bottom: var(--space-14);
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
    padding-top: var(--space-8);
  }
  
  .footer-legal {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .header-center {
    display: flex;
  }
  
  .lang-dropdown {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  /* Show mobile menu toggle between tablet and desktop */
  .header-center {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .standards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-12);
  }
  
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
  }
  
  .footer-col h4 {
    font-size: 12px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: var(--space-24) 0;
  }
  
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
  }
  
  .story-content {
    order: 1;
  }
  
  .story-visual {
    order: 2;
  }
  
  .standards-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .fleet-item {
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-16);
  }
  
  .fleet-item.reverse {
    direction: rtl;
  }
  
  .fleet-item.reverse > * {
    direction: ltr;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
  }
  
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-20);
  }
  
  .contact-info {
    order: 1;
  }
  
  .contact-form-wrapper {
    order: 2;
  }
  
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .process-step {
    flex: 1;
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}
