/* =====================================================
   E.MOVE METHOD - Refined Design System
   Sophisticated, Modern Italian
   ===================================================== */

/* ----- CSS Variables ----- */
:root {
  /* Brand Colors - Refined */
  --color-primary: #4A7C23;
  --color-primary-dark: #3A6219;
  --color-primary-light: #5A9C2D;
  --color-secondary: #0F0F0F;

  /* Neutrals - Warm Tinted */
  --color-white: #FFFFFF;
  --color-gray-50: #FAFAF9;
  --color-gray-100: #F5F5F4;
  --color-gray-200: #E7E5E4;
  --color-gray-300: #D6D3D1;
  --color-gray-400: #A8A29E;
  --color-gray-500: #78716C;
  --color-gray-600: #57534E;
  --color-gray-700: #44403C;
  --color-gray-800: #292524;
  --color-gray-900: #1C1917;

  /* Backgrounds */
  --bg-primary: #FFFFFF;
  --bg-secondary: #E8E6E3;
  --bg-dark: #0F0F0F;

  /* Typography */
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes - Refined Scale */
  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1.0625rem;
  --text-lg: 1.1875rem;
  --text-xl: 1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 2.75rem;
  --text-5xl: 3.5rem;
  --text-6xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;
  --space-40: 10rem;

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.875rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows - Soft & Sophisticated */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 60px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.06), 0 16px 40px rgba(0, 0, 0, 0.1);

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --duration-fast: 150ms;
  --duration-base: 250ms;
  --duration-slow: 400ms;

  /* Container */
  --container-max: 1140px;
  --container-padding: clamp(1.5rem, 5vw, 4rem);

  /* Aliases */
  --color-accent: var(--color-primary);
  --color-accent-dark: var(--color-primary-dark);
  --color-text-primary: var(--color-gray-900);
  --color-text-secondary: var(--color-gray-500);
  --color-text-muted: var(--color-gray-400);
  --color-bg-primary: var(--bg-primary);
  --color-bg-secondary: var(--bg-secondary);
  --color-bg-card: #FFFFFF;
  --color-border: var(--color-gray-200);
  --color-error: #DC2626;
  --color-primary-glow: rgba(74, 124, 35, 0.15);
  --color-secondary-glow: rgba(15, 15, 15, 0.1);
  --color-accent-glow: rgba(74, 124, 35, 0.1);

  /* Spacing aliases */
  --space-xs: var(--space-1);
  --space-sm: var(--space-2);
  --space-md: var(--space-4);
  --space-lg: var(--space-6);
  --space-xl: var(--space-8);
  --space-2xl: var(--space-12);
  --space-3xl: var(--space-16);
  --space-4xl: var(--space-20);

  /* Z-index */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-tooltip: 500;
  --z-cursor: 9999;

  --ease-in-out-quart: ease;
  --duration-slower: 300ms;
  --radius-3xl: 2rem;
  --bg-tertiary: var(--color-gray-100);
  --bg-glass: rgba(255, 255, 255, 0.85);
  --bg-glass-dark: rgba(255, 255, 255, 0.95);
  --color-secondary-light: var(--color-gray-600);
  --color-secondary-dark: var(--color-gray-800);
  --shadow-glow-primary: none;
  --shadow-glow-secondary: none;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--color-gray-600);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: -0.01em;
  font-size: 1.0625rem;
  font-weight: 400;
}

::selection {
  background: var(--color-primary);
  color: white;
}

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

/* ----- Page Loader - DISABLED for instant load ----- */
.page-loader {
  display: none !important;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  margin-bottom: var(--space-8);
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: var(--color-gray-200);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  border-radius: var(--radius-full);
  animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); width: 30%; }
  50% { width: 50%; }
  100% { transform: translateX(400%); width: 30%; }
}

/* ----- Custom Cursor ----- */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--color-gray-900);
  border-radius: 50%;
  pointer-events: none;
  z-index: var(--z-cursor);
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gray-400);
  border-radius: 50%;
  pointer-events: none;
  z-index: calc(var(--z-cursor) - 1);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s ease;
}

.cursor-hover {
  background: var(--color-primary);
}

.follower-hover {
  width: 60px;
  height: 60px;
  border-color: var(--color-primary);
}

.cursor-click {
  transform: translate(-50%, -50%) scale(0.8);
}

.follower-click {
  transform: translate(-50%, -50%) scale(0.9);
}

/* ----- Background Pattern - DISABLED for clean design ----- */
.bg-pattern {
  display: none;
}

/* Background effects - DISABLED for clean design */
.bg-gradient-orbs,
.orb,
.orb--1,
.orb--2,
.orb--3 {
  display: none;
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 600; letter-spacing: -0.025em; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 600; letter-spacing: -0.02em; }
h3 { font-size: var(--text-2xl); font-weight: 600; }
h4 { font-size: var(--text-xl); font-weight: 600; }
h5 { font-size: var(--text-lg); font-weight: 500; }
h6 { font-size: var(--text-base); font-weight: 500; }

p {
  color: var(--color-gray-500);
  line-height: 1.75;
  font-size: var(--text-base);
}

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

/* Text Effects */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-highlight {
  color: var(--color-primary);
  font-weight: inherit;
}

/* ----- Layout ----- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
}

.section {
  padding: 8rem 0;
  position: relative;
  z-index: 1;
  background: var(--bg-secondary);
}

.section--light {
  background: var(--bg-secondary);
}

.section--dark {
  background: var(--bg-dark);
  color: var(--color-white);
}

.section--dark .section__title,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section__header--light .section__title {
  color: var(--color-white);
}

.section__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-500);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-3);
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.section__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.section__desc {
  font-size: var(--text-lg);
  color: var(--color-gray-500);
  line-height: 1.75;
}

/* ----- Navigation ----- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  padding: var(--space-4) 0;
  transition: all var(--duration-slow) var(--ease-out-expo);
}

.navbar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  transition: opacity var(--duration-slow) var(--ease-out-expo);
}

.navbar.scrolled::before {
  opacity: 1;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
}

.navbar__logo-text span {
  color: var(--color-primary);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
}

.navbar__link {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-500);
  letter-spacing: 0.01em;
  position: relative;
  padding: var(--space-2) 0;
  transition: color var(--duration-base) ease;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-base) var(--ease-out-expo);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--color-gray-900);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Navbar Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__link--dropdown {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.navbar__link--dropdown svg {
  transition: transform var(--duration-base) ease;
}

.navbar__dropdown:hover .navbar__link--dropdown svg {
  transform: rotate(180deg);
}

.navbar__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 180px;
  background: #FFFFFF;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: var(--space-2);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-base) var(--ease-out-quart);
  z-index: 100;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) ease;
}

.navbar__dropdown-item:hover {
  background: var(--color-gray-100);
  color: var(--color-gray-900);
}

.navbar__dropdown-item svg {
  color: var(--color-primary);
}

/* Modern Hamburger Menu - Morphing Style */
.navbar__toggle {
  display: none;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.navbar__toggle:hover {
  background: rgba(139, 195, 74, 0.1);
}

.navbar__toggle:active {
  transform: scale(0.95);
}

.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-gray-900);
  border-radius: 3px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.navbar__toggle span:nth-child(1) {
  top: 14px;
}

.navbar__toggle span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.navbar__toggle span:nth-child(3) {
  bottom: 14px;
}

/* Active state - X animation */
.navbar__toggle.active span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--color-primary);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.navbar__toggle.active span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--color-primary);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-base) var(--ease-out-quart);
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn svg {
  position: relative;
  z-index: 1;
  transition: transform var(--duration-base) var(--ease-out-quart);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn--primary {
  background: var(--color-primary);
  color: white;
  box-shadow: none;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  box-shadow: none;
}

.btn--ghost {
  background: transparent;
  color: var(--color-gray-700);
  border: 1.5px solid var(--color-gray-200);
}

.btn--ghost:hover {
  border-color: var(--color-gray-300);
  background: var(--color-gray-50);
}

.btn--white {
  background: white;
  color: var(--color-gray-900);
  box-shadow: none;
  border: 1px solid var(--color-gray-200);
}

.btn--white:hover {
  background: var(--color-gray-50);
  box-shadow: none;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: var(--text-base);
  border-radius: var(--radius-xl);
}

/* Button glow - disabled */
.btn--glow::after {
  display: none;
}

/* ----- Target Selector ----- */
.target-selector {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-8) 0;
}

.target-selector__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFFFFF;
}

.target-selector.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--duration-slower) var(--ease-out-expo);
}

.target-selector__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: var(--space-8);
  margin: auto;
}

.target-selector__content {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.target-selector__logo {
  margin-bottom: var(--space-10);
}

.target-selector__logo img {
  width: 280px;
  height: auto;
  max-width: 90vw;
}

.target-selector__title {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  color: var(--color-gray-900);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.target-selector__subtitle {
  font-size: var(--text-base);
  color: var(--color-gray-500);
  margin-bottom: var(--space-12);
}

.target-selector__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

/* Fitness Card - Green */
.target-card[data-target="fitness"] {
  position: relative;
  padding: var(--space-10);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--duration-base) ease;
  overflow: hidden;
  box-shadow: none;
}

/* Estetica Card - Dark */
.target-card[data-target="estetica"] {
  position: relative;
  padding: var(--space-10);
  background: var(--color-gray-900);
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--duration-base) ease;
  overflow: hidden;
  box-shadow: none;
}

.target-card__glow {
  display: none;
}

.target-card__content {
  position: relative;
  z-index: 1;
}

.target-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-xl);
  color: white;
  font-size: 2rem;
  transition: all var(--duration-slow) var(--ease-out-expo);
}

.target-card:hover .target-card__icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.target-card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
  color: white;
  font-weight: 700;
}

.target-card__desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  margin-bottom: var(--space-6);
}

.target-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transition: all var(--duration-base) var(--ease-out-expo);
}

/* Simplified hover - minimal effect */
.target-card[data-target="fitness"]:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.target-card[data-target="estetica"]:hover {
  background: var(--color-gray-800);
  transform: translateY(-2px);
}

.ripple-effect {
  display: none;
}

/* ----- Hero Section ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(80px + var(--space-16)) 0 var(--space-16);
  overflow: hidden;
}

.hero__visual {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
}

/* Hero decorative elements - DISABLED for clean design */
.hero__orb,
.hero__orb--1,
.hero__orb--2,
.hero__grid {
  display: none;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-500);
  margin-bottom: var(--space-6);
  letter-spacing: 0;
}

.hero__badge-dot {
  display: none;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero__title {
  margin-bottom: var(--space-6);
  line-height: 1.05;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--color-gray-500);
  margin-bottom: var(--space-10);
  max-width: 500px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-16);
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-gray-200);
}

.hero__stat {
  text-align: center;
}

.hero__stat-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--space-1);
  color: var(--color-gray-900);
}

.hero__stat-label {
  font-size: var(--text-xs);
  color: var(--color-gray-500);
  text-transform: none;
  letter-spacing: 0;
}

.hero__stat-divider {
  display: none;
}

/* Hero Single Image */
.hero__image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.hero__image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.1) 100%);
  pointer-events: none;
}

.hero__img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Hero Image Collage */
.hero__collage {
  position: relative;
}

.hero__collage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: var(--space-4);
}

.hero__collage-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
}

.hero__collage-item--large {
  grid-row: span 2;
}

.hero__collage-item--medium {
  grid-column: span 1;
}

.hero__collage-item--small {
  grid-column: span 1;
}

.hero__collage-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image placeholder when no image */
.hero__collage-item:not(:has(img[src])) {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
  font-size: var(--text-sm);
}

.hero__collage-item:not(:has(img[src]))::before {
  content: 'Immagine';
}

/* ----- Image Section Component ----- */
.image-block {
  background: var(--color-gray-50);
  border: none;
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  box-shadow: var(--shadow-lg);
}

.image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-block--tall {
  min-height: 500px;
}

.image-block--full {
  min-height: 400px;
  width: 100%;
}

/* Content with Image Layout */
.content-with-image {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.content-with-image--reverse {
  direction: rtl;
}

.content-with-image--reverse > * {
  direction: ltr;
}

.content-with-image__text {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.content-with-image__image {
  position: relative;
}

@media (max-width: 768px) {
  .content-with-image {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .content-with-image--reverse {
    direction: ltr;
  }
}

/* Hero Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-gray-400);
  font-size: var(--text-xs);
  text-transform: none;
  letter-spacing: 0;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gray-300) 0%, transparent 100%);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; height: 40px; }
  50% { opacity: 0.5; height: 60px; }
}

/* ----- Cards Grid ----- */
.cards-grid {
  display: grid;
  gap: 2.5rem;
}

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

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

/* ----- Card ----- */
.card {
  position: relative;
  padding: 2rem 2.25rem;
  background: #FFFFFF;
  border: 2px solid #A0A0A0;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all var(--duration-base) var(--ease-out-quart);
  overflow: hidden;
}

.card:hover {
  border-color: #888888;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.card-shine {
  display: none;
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border: none;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--color-primary);
  transition: all var(--duration-base) var(--ease-out-quart);
}

.card:hover .card__icon {
  background: var(--color-primary);
  color: white;
}

.card__icon--red {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, transparent 100%);
  border-color: rgba(220, 38, 38, 0.1);
  color: #DC2626;
}

.card:hover .card__icon--red {
  background: linear-gradient(135deg, #DC2626 0%, #EF4444 100%);
  color: white;
}

.card__icon--accent {
  background: linear-gradient(135deg, var(--color-primary-glow) 0%, transparent 100%);
  border-color: rgba(74, 124, 35, 0.1);
  color: var(--color-primary);
}

.card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-gray-900);
}

.card__text {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.7;
  margin: 0;
}

.card--problem {
  border-color: #A0A0A0;
  background: #FFFFFF;
}

.card--problem:hover {
  border-color: #888888;
}

/* ----- Comparison Table ----- */
.comparison {
  max-width: 1000px;
  margin: 0 auto;
  background: #FFFFFF;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 2px solid #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.comparison__header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  background: var(--color-gray-50);
}

.comparison__col {
  padding: var(--space-5) var(--space-6);
  display: flex;
  align-items: center;
}

.comparison__col--metric {
  font-weight: 500;
  color: var(--color-gray-800);
}

.comparison__col--old,
.comparison__col--new {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  gap: var(--space-2);
}

.comparison__header .comparison__col {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-500);
}

.comparison__header .comparison__col--new {
  color: var(--color-primary);
}

.comparison__row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border-top: 1px solid var(--color-gray-100);
  transition: background var(--duration-fast) ease;
}

.comparison__row:hover {
  background: var(--color-gray-50);
}

.comparison__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-lg);
}

.comparison__value--positive {
  color: var(--color-primary);
}

.comparison__value--negative {
  color: var(--color-gray-400);
}

.comparison__badge {
  display: inline-block;
  padding: var(--space-1) var(--space-3);
  background: rgba(139, 195, 74, 0.2);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
}

/* ----- Testimonials ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.testimonial {
  position: relative;
  padding: var(--space-8);
  background: #FFFFFF;
  border: 2px solid #A0A0A0;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all var(--duration-slow) var(--ease-out-quart);
}

.testimonial:hover {
  border-color: #888888;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.testimonial__quote {
  position: absolute;
  top: var(--space-4);
  left: var(--space-6);
  color: var(--color-primary);
  opacity: 0.5;
}

.testimonial__text {
  font-size: var(--text-sm);
  color: var(--color-gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-6);
  margin-top: var(--space-8);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial__avatar span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--color-primary-dark);
}

.testimonial__name {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.testimonial__role {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
  margin: 0;
}

.testimonial__result {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  text-align: right;
}

.testimonial__result-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-primary-dark);
}

.testimonial__result-label {
  font-size: var(--text-xs);
  color: var(--color-gray-400);
}

/* ----- Stats Bar ----- */
.stats-bar {
  padding: var(--space-16) 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  display: none;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  position: relative;
  z-index: 1;
}

.stats-bar__item {
  text-align: center;
}

.stats-bar__value {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stats-bar__label {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  text-transform: none;
}

/* ----- CTA Section ----- */
.cta {
  padding: var(--space-32) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-dark);
}

.cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(139, 195, 74, 0.3);
  top: -100px;
  left: 10%;
}

.cta__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(230, 74, 25, 0.2);
  bottom: -50px;
  right: 15%;
}

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

.cta__title {
  color: white;
  margin-bottom: var(--space-6);
}

.cta__text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-10);
}

/* ----- Footer ----- */
.footer {
  padding: var(--space-20) 0 var(--space-8);
  background: var(--color-gray-50);
  border-top: 1px solid var(--color-gray-100);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

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

.footer__logo-text {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-gray-900);
}

.footer__logo-text span {
  color: var(--color-primary);
}

.footer__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  max-width: 280px;
}

.footer__title {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-5);
  color: var(--color-gray-900);
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: var(--space-3);
}

.footer__links a {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  transition: color var(--duration-fast) ease;
}

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

.footer__links--contact li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-gray-500);
  font-size: var(--text-sm);
}

.footer__links--contact svg {
  color: var(--color-gray-400);
  flex-shrink: 0;
}

.footer__bottom {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  font-size: var(--text-sm);
  color: var(--color-gray-400);
}

.footer__social {
  display: flex;
  gap: var(--space-2);
}

.footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  color: var(--color-gray-500);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.footer__social-link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-3px);
}

/* ----- Page Header ----- */
.page-header {
  padding: calc(100px + var(--space-20)) 0 var(--space-16);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  text-align: center;
  position: relative;
}

.page-header__title {
  font-size: var(--text-5xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  letter-spacing: -0.025em;
}

.page-header__subtitle {
  font-size: var(--text-lg);
  color: var(--color-gray-500);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ----- Sector Toggle ----- */
.sector-toggle {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-8);
  padding: var(--space-2);
  background: var(--color-gray-100);
  border-radius: var(--radius-xl);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.sector-toggle__btn {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-8);
  background: transparent;
  border: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-gray-500);
  cursor: pointer;
  transition: all var(--duration-base) var(--ease-out-quart);
}

.sector-toggle__btn:hover {
  color: var(--color-gray-700);
}

.sector-toggle__btn.active {
  background: #FFFFFF;
  color: var(--color-gray-900);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sector-toggle__btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 480px) {
  .sector-toggle {
    flex-direction: column;
    width: calc(100% - 48px);
  }

  .sector-toggle__btn {
    width: 100%;
    justify-content: center;
    padding: var(--space-3) var(--space-4);
  }
}

/* ----- Scroll Reveal - DISABLED for static design ----- */
[data-reveal],
[data-reveal].revealed,
.reveal-hidden,
.reveal-hidden.revealed {
  opacity: 1;
  transform: none;
}

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

/* ----- Forms ----- */
.form-group {
  margin-bottom: var(--space-5);
  position: relative;
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--color-gray-700);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: var(--bg-primary);
  border: 2px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  color: var(--color-gray-800);
  font-family: var(--font-body);
  font-size: var(--text-base);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.1);
}

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

.form-message {
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  margin-top: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--duration-base) var(--ease-out-expo);
}

.form-message.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-message--success {
  background: rgba(139, 195, 74, 0.1);
  border: 1px solid rgba(139, 195, 74, 0.3);
  color: var(--color-primary-dark);
}

.form-message--error {
  background: rgba(230, 74, 25, 0.1);
  border: 1px solid rgba(230, 74, 25, 0.3);
  color: var(--color-secondary);
}

.form-message__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: bold;
}

.form-message--success .form-message__icon {
  background: var(--color-primary);
  color: white;
}

.form-message--error .form-message__icon {
  background: var(--color-secondary);
  color: white;
}

/* ----- Services ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  align-items: stretch;
}

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

.service-card {
  position: relative;
  background: #FFFFFF;
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all var(--duration-slow) var(--ease-out-quart);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
}

.service-card:hover {
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
  border-color: var(--color-primary);
}

/* Card Header */
.service-card__header {
  background: linear-gradient(135deg, var(--color-gray-100) 0%, var(--color-gray-50) 100%);
  padding: var(--space-6) var(--space-6) var(--space-5);
  text-align: center;
  border-bottom: 1px solid var(--color-gray-200);
}

.service-card--featured .service-card__header {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  border-bottom-color: var(--color-primary-dark);
}

.service-card--featured .service-card__tier,
.service-card--featured .service-card__title {
  color: white;
}

/* Badge */
.service-card__badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
}

/* Tier label */
.service-card__tier {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.service-card__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: var(--radius-xl);
  margin: 0 auto var(--space-4);
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-card--featured .service-card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gray-900);
  margin: 0;
}

/* Card Body */
.service-card__body {
  padding: var(--space-6);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-card__desc {
  color: var(--color-gray-500);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  line-height: 1.6;
  text-align: center;
}

.service-card__features {
  list-style: none;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.service-card__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  line-height: 1.5;
  border-bottom: 1px solid var(--color-gray-100);
}

.service-card__features li:last-child {
  border-bottom: none;
}

.service-card__features li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: var(--color-primary);
  border-radius: 50%;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  flex-shrink: 0;
  margin-top: 2px;
}

/* Card Footer */
.service-card__footer {
  padding: 0 var(--space-6) var(--space-6);
  margin-top: auto;
}

.service-card__footer .btn {
  width: 100%;
}

.service-card--featured .service-card__footer .btn {
  background: var(--color-gray-900);
}

.service-card--featured .service-card__footer .btn:hover {
  background: var(--color-gray-800);
}

/* ----- Private Pack Section ----- */
.private-pack-section {
  margin-top: var(--space-20);
  padding-top: var(--space-12);
  border-top: 1px solid var(--color-gray-200);
}

.private-pack-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.service-card--horizontal {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
}

.service-card--horizontal .service-card__header {
  grid-row: 1 / -1;
  border-radius: var(--radius-2xl) 0 0 var(--radius-2xl);
  border-bottom: none;
  border-right: 1px solid var(--color-gray-200);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-8);
}

.service-card--horizontal .service-card__body {
  padding: var(--space-6) var(--space-8);
  border-bottom: 1px solid var(--color-gray-100);
}

.service-card--horizontal .service-card__footer {
  padding: var(--space-5) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.service-card--horizontal .service-card__footer .btn {
  width: auto;
  min-width: 200px;
}

.service-card__features--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2) var(--space-6);
}

@media (max-width: 768px) {
  .private-pack-section {
    margin-top: var(--space-12);
    padding-top: var(--space-8);
  }

  .service-card--horizontal {
    display: flex;
    flex-direction: column;
  }

  .service-card--horizontal .service-card__header {
    border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
    border-right: none;
    border-bottom: 1px solid var(--color-gray-200);
    padding: var(--space-6);
  }

  .service-card--horizontal .service-card__body {
    padding: var(--space-5) var(--space-6);
  }

  .service-card--horizontal .service-card__footer {
    padding: var(--space-5) var(--space-6);
    justify-content: center;
  }

  .service-card--horizontal .service-card__footer .btn {
    width: 100%;
  }

  .service-card__features--grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Founder ----- */
.founder__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

.founder__image img {
  width: 100%;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.founder__role {
  font-size: var(--text-lg);
  color: var(--color-primary);
  margin-bottom: var(--space-6);
  font-weight: 500;
}

.founder__quote {
  padding: var(--space-6);
  background: var(--bg-secondary);
  border-left: 3px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--color-gray-600);
  margin-top: var(--space-8);
}

/* ----- Contact ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.contact-info__item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info__text h4 {
  font-size: var(--text-base);
  margin-bottom: var(--space-1);
}

.contact-info__text p {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  margin: 0;
}

/* ----- Utility Classes ----- */
.text-center { text-align: center; }
.hidden { display: none !important; }

/* Target visibility */
.fitness-only,
.estetica-only {
  display: none !important;
}

body.target-fitness .fitness-only {
  display: block !important;
}

body.target-estetica .estetica-only {
  display: block !important;
}

/* Default: show fitness if no selection made */
body:not(.target-fitness):not(.target-estetica) .fitness-only {
  display: block !important;
}

/* ----- Responsive ----- */
@media (max-width: 1200px) {
  .hero__container {
    grid-template-columns: 1fr;
  }

  .hero__visual-side,
  .hero__collage {
    display: none;
  }

  .hero__content {
    max-width: 700px;
  }
}

@media (max-width: 1024px) {
  .cards-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .comparison__header,
  .comparison__row {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Lock body scroll when menu is open */
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
  }

  /* Navbar needs higher z-index than menu so toggle stays clickable */
  .navbar {
    z-index: 9999 !important;
  }

  .navbar__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 24px 60px;
    gap: 20px;
    z-index: 9998;
    list-style: none;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .navbar__menu.active {
    display: flex;
    animation: menuFadeIn 0.3s ease forwards;
  }

  @keyframes menuFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .navbar__menu li {
    opacity: 0;
    transform: translateY(20px);
    animation: menuItemIn 0.4s ease forwards;
  }

  .navbar__menu.active li:nth-child(1) { animation-delay: 0.1s; }
  .navbar__menu.active li:nth-child(2) { animation-delay: 0.15s; }
  .navbar__menu.active li:nth-child(3) { animation-delay: 0.2s; }
  .navbar__menu.active li:nth-child(4) { animation-delay: 0.25s; }
  .navbar__menu.active li:nth-child(5) { animation-delay: 0.3s; }
  .navbar__menu.active li:nth-child(6) { animation-delay: 0.35s; }
  .navbar__menu.active li:nth-child(7) { animation-delay: 0.4s; }

  @keyframes menuItemIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .navbar__menu .navbar__link {
    font-size: var(--text-xl);
    padding: var(--space-3) var(--space-6);
    text-align: center;
  }

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

  /* Mobile dropdown */
  .navbar__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    min-width: auto;
    padding: var(--space-2) 0;
  }

  .navbar__dropdown-item {
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-base);
  }

  .navbar__link--dropdown svg {
    display: none;
  }

  .navbar__menu .btn {
    margin-top: var(--space-6);
    position: relative !important;
    transform: none !important;
  }

  .navbar__toggle {
    display: block;
    position: relative;
    z-index: 10001;
  }

  .target-selector__cards {
    grid-template-columns: 1fr;
  }

  /* Stats sempre 3 colonne orizzontali */
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
  }

  .hero__stat-value {
    font-size: var(--text-xl);
  }

  .hero__stat-label {
    font-size: 0.65rem;
  }

  .cards-grid--3,
  .cards-grid--2 {
    grid-template-columns: 1fr;
  }

  .comparison__header,
  .comparison__row {
    grid-template-columns: 1fr;
  }

  .comparison__col {
    justify-content: center;
    text-align: center;
    padding: var(--space-3) var(--space-4);
  }

  .comparison__col--metric {
    background: var(--color-gray-50);
    font-weight: 600;
  }

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

  /* Stats bar sempre 4 colonne orizzontali */
  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
  }

  .stats-bar__value {
    font-size: var(--text-2xl);
  }

  .stats-bar__label {
    font-size: var(--text-xs);
  }

  .founder__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

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

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .hero__cta {
    flex-direction: column;
  }

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

  .custom-cursor,
  .cursor-follower {
    display: none;
  }

  /* Mobile Text Size Optimizations */
  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
    line-height: 1.1;
  }

  .hero__subtitle {
    font-size: var(--text-base);
  }

  .section__title,
  .page-header__title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .page-header__subtitle {
    font-size: var(--text-base);
  }

  .section__label {
    font-size: var(--text-sm);
  }

  .card__title,
  .feature-card__title {
    font-size: var(--text-base);
  }

  .card__text,
  .feature-card__desc {
    font-size: var(--text-sm);
  }

  .stats-bar__number {
    font-size: var(--text-2xl);
  }

  .cta__title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .cta__text {
    font-size: var(--text-sm);
  }

  .footer__title {
    font-size: var(--text-base);
  }

  .btn {
    font-size: var(--text-sm);
    padding: var(--space-3) var(--space-5);
  }

  .btn--large {
    padding: var(--space-4) var(--space-6);
  }

  /* Logo responsive */
  .navbar__logo img {
    max-width: 120px;
    height: auto;
  }

  /* Fix overflow issues */
  body {
    overflow-x: hidden;
  }

  .container {
    overflow-x: hidden;
  }

  /* Image responsiveness */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Fix inline styles overflow */
  [style*="display: flex"] {
    flex-wrap: wrap;
  }

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

  /* Page header */
  .page-header {
    padding: 120px 0 60px;
  }

  /* Target selector improvements */
  .target-selector__content {
    padding: 30px 20px;
  }

  .target-selector__cards {
    gap: 16px;
  }

  /* Hero improvements */
  .hero {
    padding: 100px 0 var(--space-12);
  }

  .hero__badge {
    font-size: 0.7rem;
    padding: 8px 16px;
  }

  /* CTA improvements */
  .cta__container {
    padding: 40px 24px;
  }

  /* Footer improvements */
  .footer__col {
    margin-bottom: var(--space-6);
  }

  .footer__links--contact {
    gap: var(--space-3);
  }

  .footer__links--contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }

  .footer__links--contact svg {
    flex-shrink: 0;
    margin-top: 2px;
  }

  /* H2 titles tablet */
  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .section__title {
    font-size: 1.75rem;
  }

  /* Long text handling */
  p, span {
    overflow-wrap: break-word;
  }

  /* =====================================================
     TABLET FIXES FOR INLINE STYLED ELEMENTS
     ===================================================== */

  /* Fix inline 4-column grid to 2 columns on tablet */
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Fix inline 3-column grid to 2 columns on tablet */
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* Fix large founder avatar (200px -> 150px) */
  [style*="width: 200px"][style*="height: 200px"] {
    width: 150px !important;
    height: 150px !important;
  }

  /* Fix 70px number circles */
  [style*="width: 70px"][style*="height: 70px"] {
    width: 60px !important;
    height: 60px !important;
  }

  /* Fix 6rem emoji icons */
  [style*="font-size: 6rem"] {
    font-size: 4.5rem !important;
  }

  /* Fix 5rem emoji icons */
  [style*="font-size: 5rem"] {
    font-size: 3.5rem !important;
  }

  /* Fix 400px height elements */
  [style*="height: 400px"] {
    height: 300px !important;
  }

  /* Fix inline padding */
  [style*="padding: var(--space-12)"] {
    padding: var(--space-8) !important;
  }
}

@media (max-width: 480px) {
  /* Stats sempre 3 colonne orizzontali */
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2);
  }

  .hero__stat-value {
    font-size: var(--text-lg);
  }

  .hero__stat-label {
    font-size: 0.6rem;
    line-height: 1.3;
  }

  .stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2);
  }

  .stats-bar__value {
    font-size: var(--text-lg);
  }

  .stats-bar__label {
    font-size: 0.6rem;
  }

  /* Container padding fix - più spazio ai lati */
  .container {
    padding: 0 24px;
  }

  /* Founder grid text sections need more breathing room */
  .founder__grid > div {
    padding: 0 4px;
  }

  /* Section spacing reduction */
  .section {
    padding: var(--space-12) 0;
  }

  /* Typography mobile - più omogenea */
  h2, .section__title, .features__title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: var(--space-4);
  }

  /* Body, subtitles e lists stessa dimensione */
  p,
  li,
  .section__desc,
  .page-header__subtitle,
  .hero__subtitle,
  .founder__content p,
  .card__text,
  .feature-card__desc,
  .service-card__features li,
  ul li,
  ol li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Card titles slightly smaller */
  .card__title,
  .feature-card__title,
  .service-card__title {
    font-size: 1.1rem;
  }

  /* Hero adjustments */
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero__content {
    text-align: center;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 1.2;
    word-break: break-word;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Logo sizing */
  .navbar__logo img,
  .footer__logo img {
    max-width: 110px;
    height: auto;
  }

  .target-selector .navbar__logo img {
    max-width: 160px;
  }

  /* Target selector mobile */
  .target-selector__content {
    padding: 20px;
  }

  .target-selector__title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .target-selector__subtitle {
    font-size: 0.9rem;
  }

  .target-card {
    padding: 24px 20px;
  }

  .target-card__title {
    font-size: 1.1rem;
  }

  .target-card__desc {
    font-size: 0.9rem;
  }

  /* Cards mobile */
  .card,
  .feature-card,
  .service-card {
    padding: 20px;
  }

  /* Footer mobile */
  .footer {
    padding: 40px 0 24px;
  }

  .footer__desc {
    font-size: 0.9rem;
  }

  .footer__links {
    font-size: 0.9rem;
  }

  .footer__links--contact li {
    flex-wrap: wrap;
    gap: 8px;
  }

  .footer__links--contact span,
  .footer__links--contact a {
    font-size: 0.9rem;
    word-break: break-all;
  }

  .footer__copy {
    font-size: 0.7rem;
    line-height: 1.4;
  }

  /* Page header mobile */
  .page-header {
    padding: 100px 0 40px;
  }

  .page-header__title {
    font-size: 1.5rem;
  }

  /* Service card features gap */
  .service-card__features {
    gap: var(--space-2);
  }

  /* FAQ mobile */
  .card h4 {
    font-size: 1rem;
  }

  /* CTA section mobile */
  .cta {
    padding: 40px 0;
  }

  .cta__title {
    font-size: 1.25rem;
  }

  .cta__text {
    font-size: 0.9rem;
  }

  /* Founder grid mobile */
  .founder__quote {
    font-size: 0.95rem;
    padding: 16px;
  }

  /* Contact info mobile */
  .contact-info__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .contact-info__icon {
    font-size: 1.5rem;
  }

  .contact-info__text h4 {
    font-size: 0.9rem;
  }

  .contact-info__text p {
    font-size: 0.9rem;
    word-break: break-all;
  }

  /* FAQ mobile */
  .faq__question {
    font-size: 0.9rem;
    padding: 16px;
  }

  .faq__answer {
    font-size: 0.9rem;
    padding: 0 16px 16px;
  }

  /* Buttons mobile */
  .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .hero__cta .btn {
    width: 100%;
  }

  /* Stats bar mobile */
  .stats-bar {
    padding: 30px 0;
  }

  .stats-bar__number {
    font-size: 1.5rem;
  }

  .stats-bar__label {
    font-size: 0.75rem;
  }

  /* Comparison table mobile */
  .comparison__col {
    padding: 12px;
    font-size: 0.9rem;
  }

  /* Text gradient - now solid color */
  .text-gradient {
    color: var(--color-primary);
  }

  /* H2 titles with long Italian words */
  h2 {
    font-size: 1.5rem;
    line-height: 1.3;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
  }

  /* Section titles fix */
  .section__title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  /* Text highlight mobile */
  .text-highlight {
    display: inline;
    word-break: break-word;
  }

  /* Founder grid h2 specific */
  .founder__grid h2 {
    font-size: 1.35rem;
    line-height: 1.35;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  /* Container overflow */
  .container {
    overflow-x: hidden;
    max-width: 100%;
  }

  /* General text overflow prevention */
  p, span, h1, h2, h3, h4, h5, h6 {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  /* =====================================================
     COMPREHENSIVE MOBILE FIXES FOR INLINE STYLED ELEMENTS
     ===================================================== */

  /* Fix inline 4-column grid (metodo.html process steps) */
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* Fix inline 3-column grid (risultati.html guarantee) */
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Fix inline 2-column grid on very small screens */
  [style*="grid-template-columns: repeat(2"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Fix large founder avatar (200px -> 120px) */
  [style*="width: 200px"][style*="height: 200px"] {
    width: 120px !important;
    height: 120px !important;
  }

  /* Fix 70px number circles (metodo.html) */
  [style*="width: 70px"][style*="height: 70px"] {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.25rem !important;
  }

  /* Fix 60px avatar circles */
  [style*="width: 60px"][style*="height: 60px"] {
    width: 48px !important;
    height: 48px !important;
  }

  /* Fix 50px social buttons */
  [style*="width: 50px"][style*="height: 50px"] {
    width: 44px !important;
    height: 44px !important;
  }

  /* Fix 40px circles (timeline, social) */
  [style*="width: 40px"][style*="height: 40px"] {
    width: 36px !important;
    height: 36px !important;
  }

  /* Fix timeline year indicators (100px width) */
  [style*="width: 100px"] {
    width: 70px !important;
    font-size: 0.8rem !important;
  }

  /* Fix 6rem emoji icons */
  [style*="font-size: 6rem"] {
    font-size: 3.5rem !important;
  }

  /* Fix 5rem emoji icons */
  [style*="font-size: 5rem"] {
    font-size: 3rem !important;
  }

  /* Fix 4rem emoji icons */
  [style*="font-size: 4rem"] {
    font-size: 2.5rem !important;
  }

  /* Fix 400px height elements (map placeholder) */
  [style*="height: 400px"] {
    height: 250px !important;
  }

  /* Fix GHL form container */
  .ghl-form-container {
    min-height: 400px !important;
  }

  /* Fix RTL direction issues on mobile */
  [style*="direction: rtl"] {
    direction: ltr !important;
  }

  /* Fix inline flex with gap */
  [style*="display: flex"][style*="gap"] {
    flex-wrap: wrap !important;
  }

  /* Case study cards */
  .case-study,
  [class*="case-study"] {
    padding: 16px !important;
  }

  /* Guarantee items */
  .guarantee-item,
  [class*="guarantee"] {
    padding: 16px !important;
    text-align: center;
  }

  /* Timeline improvements */
  .timeline,
  [class*="timeline"] {
    padding-left: 0 !important;
  }

  /* Stats numbers in inline grids */
  [style*="display: grid"] span[style*="font-size: 2"] {
    font-size: 1.5rem !important;
  }

  /* Fix any inline margin that's too large */
  [style*="margin-top: var(--space-16)"] {
    margin-top: var(--space-8) !important;
  }

  [style*="margin-bottom: var(--space-16)"] {
    margin-bottom: var(--space-8) !important;
  }

  /* Fix inline padding */
  [style*="padding: var(--space-12)"] {
    padding: var(--space-6) !important;
  }

  [style*="padding: var(--space-16)"] {
    padding: var(--space-8) !important;
  }
}

/* =====================================================
   EXTRA SMALL SCREENS (320px and below)
   ===================================================== */
@media (max-width: 320px) {
  /* Container ultra-compact padding */
  .container {
    padding: 0 12px;
  }

  /* Hero ultra-compact */
  .hero__title {
    font-size: 1.5rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
  }

  /* Force single column everywhere */
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }

  /* Ultra-small avatar */
  [style*="width: 200px"][style*="height: 200px"],
  [style*="width: 150px"][style*="height: 150px"],
  [style*="width: 120px"][style*="height: 120px"] {
    width: 100px !important;
    height: 100px !important;
  }

  /* Ultra-small emoji */
  [style*="font-size: 6rem"],
  [style*="font-size: 5rem"],
  [style*="font-size: 4rem"],
  [style*="font-size: 3.5rem"],
  [style*="font-size: 3rem"] {
    font-size: 2.5rem !important;
  }

  /* Smaller buttons */
  .btn {
    padding: 12px 16px;
    font-size: 0.9rem;
  }

  /* Page headers compact */
  .page-header__title {
    font-size: 1.25rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  /* Cards ultra-compact */
  .card,
  .feature-card,
  .service-card {
    padding: 16px;
  }

  /* Footer ultra-compact */
  .footer__copy {
    font-size: 0.65rem;
  }

  /* Number circles ultra-small */
  [style*="width: 70px"][style*="height: 70px"],
  [style*="width: 60px"][style*="height: 60px"],
  [style*="width: 50px"][style*="height: 50px"] {
    width: 40px !important;
    height: 40px !important;
    font-size: 1rem !important;
  }

  /* Smaller icons and buttons */
  [style*="width: 50px"][style*="height: 50px"],
  [style*="width: 44px"][style*="height: 44px"],
  [style*="width: 40px"][style*="height: 40px"] {
    width: 36px !important;
    height: 36px !important;
  }

  /* Timeline year ultra-compact */
  [style*="width: 100px"],
  [style*="width: 70px"] {
    width: 60px !important;
    font-size: 0.75rem !important;
  }
}

/* =====================================================
   Additional Components (Backward Compatibility)
   ===================================================== */

/* ----- Text Accent (alias for gradient) ----- */
.text-accent {
  color: var(--color-primary);
}

/* ----- Features Section ----- */
.features__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

.features__label {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-gray-500);
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: var(--space-3);
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.section--dark .features__label {
  color: rgba(255, 255, 255, 0.6);
  background: transparent;
}

.features__title {
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  color: var(--color-gray-900);
  letter-spacing: -0.02em;
}

.section--dark .features__title {
  color: var(--color-white);
}

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

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

@media (max-width: 768px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Feature Card ----- */
.feature-card {
  position: relative;
  padding: var(--space-8);
  background: #FFFFFF;
  border: 2px solid #A0A0A0;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all var(--duration-slow) var(--ease-out-quart);
  overflow: hidden;
}

.feature-card:hover {
  border-color: #888888;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.section--dark .feature-card {
  background: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.section--dark .feature-card:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
}

.section--dark .feature-card .feature-card__title {
  color: var(--color-gray-900);
}

.section--dark .feature-card .feature-card__desc {
  color: var(--color-gray-500);
}

.section--dark .feature-card .feature-card__icon {
  background: var(--color-gray-100);
  color: var(--color-primary);
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border: none;
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-5);
  color: var(--color-primary);
  transition: all var(--duration-base) var(--ease-out-quart);
}

.feature-card:hover .feature-card__icon {
  background: var(--color-primary);
  color: white;
}

.section--dark .feature-card__icon {
  background: var(--color-gray-100);
  color: var(--color-primary);
}

.feature-card__title {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--space-3);
  color: var(--color-gray-900);
  letter-spacing: -0.01em;
}

.section--dark .feature-card__title {
  color: var(--color-gray-900);
}

.feature-card__desc {
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  line-height: 1.7;
  margin: 0;
}

.section--dark .feature-card__desc {
  color: var(--color-gray-500);
}

/* ----- Testimonials Section ----- */
.testimonials {
  padding: var(--space-32) 0;
}

.testimonials__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-16);
}

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

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

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ----- Stats Bar Inner ----- */
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

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

@media (max-width: 480px) {
  .stats-bar__inner {
    grid-template-columns: 1fr;
  }
}

/* ----- Page Header Content ----- */
.page-header__content {
  position: relative;
  z-index: 1;
}

/* ----- Founder Bio ----- */
.founder__bio {
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  margin-bottom: var(--space-4);
}

/* ----- Form Select Styling ----- */
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B7A8A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 3rem;
}

/* ----- Contact Info Icons ----- */
.contact-info__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-gray-100);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1.125rem;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* ----- Button Loader ----- */
.btn-loader {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ----- GHL Form Container ----- */
.ghl-form-wrapper {
  background: var(--bg-primary);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  border: 1px solid var(--color-gray-100);
  box-shadow: var(--shadow-card);
}

.ghl-form-container {
  min-height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ghl-form-container iframe {
  min-height: 500px;
}

@media (max-width: 768px) {
  .ghl-form-wrapper {
    padding: var(--space-4);
  }

  .ghl-form-container {
    min-height: 550px;
  }

  .ghl-form-container iframe {
    min-height: 550px;
  }
}
