/* ============================================
   MODERN STUDY ITALY LANDING PAGE - 2025/2026
   Complete CSS Redesign with Advanced Effects
   ============================================ */

/* ==================== ROOT VARIABLES ==================== */
:root {
  /* Color Palette - Dark Mode - Enhanced Vibrant */
  --color-bg-primary: #0a0815;
  --color-bg-secondary: #0f0d1f;
  --color-bg-tertiary: #14111e;
  --color-surface: #1a1630;
  --color-surface-elevated: #201d42;
  
  --color-text-primary: #f2f0ff;
  --color-text-secondary: #c4b5fd;
  --color-text-tertiary: #a78bfa;
  --color-text-muted: #7c6fa5;
  
  --color-accent-primary: #7c3aed;
  --color-accent-secondary: #d946ef;
  --color-accent-tertiary: #ec4899;
  --color-accent-quaternary: #06b6d4;
  
  --color-gradient-1: linear-gradient(135deg, #7c3aed 0%, #d946ef 35%, #f472b6 70%, #06b6d4 100%);
  --color-gradient-2: linear-gradient(to right, #7c3aed, #d946ef, #ec4899);
  --color-gradient-3: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.35), transparent 70%);
  --color-gradient-4: linear-gradient(180deg, rgba(124, 58, 237, 0.15) 0%, rgba(217, 70, 239, 0.08) 50%, transparent 100%);
  
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-error: #ef4444;
  --color-info: #3b82f6;
  
  --color-border: rgba(124, 58, 237, 0.2);
  --color-border-light: rgba(124, 58, 237, 0.1);
  --color-border-accent: rgba(217, 70, 239, 0.35);
  
  /* Shadows & Effects */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.28);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 50px rgba(124, 58, 237, 0.4);
  --shadow-glow-strong: 0 0 80px rgba(124, 58, 237, 0.5);
  --shadow-accent: 0 0 40px rgba(217, 70, 239, 0.35);
  
  --blur-glass: blur(20px) saturate(200%);
  --blur-glass-strong: blur(40px) saturate(220%);
  --blur-glass-lite: blur(10px) saturate(180%);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;
  
  /* Typography - Premium Fonts */
  --font-primary: 'Sora', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-secondary: 'Space Grotesk', 'Courier New', monospace;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-5xl: 3.5rem;
  --font-size-6xl: 4.5rem;
  
  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 500ms cubic-bezier(0.23, 1, 0.32, 1);
  
  /* Z-index */
  --z-background: -1;
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-notification: 400;
  --z-tooltip: 500;
}

/* Light Mode Theme - Italian Flag Inspired (Red, Green, White) */
body.light-mode {
  /* Italian Flag Color Palette */
  --color-bg-primary: #fafbfc;
  --color-bg-secondary: #f3f4f6;
  --color-bg-tertiary: #ecf0f5;
  --color-surface: #ffffff;
  --color-surface-elevated: #fbfcfd;
  
  /* Text Colors - Strategic Green & Red */
  --color-text-primary: #0f472d;        /* Deep Green for primary text */
  --color-text-secondary: #b91c1c;      /* Italian Red for emphasis */
  --color-text-tertiary: #166534;       /* Medium Green for subtext */
  --color-text-muted: #4b7561;          /* Muted Green for supporting text */
  --color-text-accent: #00a550;         /* Bright Green for highlights */
  
  /* Italian Flag Colors - Premium Palette */
  --color-accent-primary: #00a550;      /* Premium Italian Green */
  --color-accent-secondary: #c41e3a;    /* Premium Italian Red */
  --color-accent-tertiary: #006432;     /* Deep Green */
  --color-accent-red-light: #dc2626;    /* Light Red */
  --color-accent-green-light: #10b981;  /* Light Green */
  
  /* Premium Gradient Combinations */
  --color-gradient-1: linear-gradient(135deg, #00a550 0%, #10b981 50%, #34d399 100%);
  --color-gradient-2: linear-gradient(135deg, #c41e3a 0%, #dc2626 50%, #f87171 100%);
  --color-gradient-3: linear-gradient(90deg, #00a550 0%, #ffffff 50%, #c41e3a 100%);
  --color-gradient-4: linear-gradient(135deg, #00a550 0%, #10b981 35%, #ffffff 50%, #f87171 65%, #c41e3a 100%);
  --color-gradient-hero: linear-gradient(135deg, rgba(0, 165, 80, 0.08) 0%, rgba(255, 255, 255, 1) 50%, rgba(196, 30, 58, 0.08) 100%);
  --color-gradient-surface: linear-gradient(to bottom, rgba(0, 165, 80, 0.04), rgba(196, 30, 58, 0.04));
  --color-gradient-text-green: linear-gradient(135deg, #00a550, #10b981);
  --color-gradient-text-red: linear-gradient(135deg, #c41e3a, #dc2626);
  --color-gradient-tricolor: linear-gradient(135deg, #00a550 0%, #ffffff 33%, #c41e3a 66%, #00a550 100%);
  
  /* Success, Warning, Error Colors */
  --color-success: #00a550;
  --color-warning: #f59e0b;
  --color-error: #c41e3a;
  --color-info: #0066cc;
  
  /* Borders with Italian flag colors */
  --color-border: rgba(0, 165, 80, 0.22);
  --color-border-light: rgba(0, 165, 80, 0.12);
  --color-border-accent: rgba(0, 165, 80, 0.45);
  --color-border-red: rgba(196, 30, 58, 0.32);
  --color-border-white: rgba(0, 0, 0, 0.08);
  
  /* Enhanced Glass Effects */
  --blur-glass: blur(16px) saturate(180%);
  --blur-glass-strong: blur(32px) saturate(200%);
  --blur-glass-lite: blur(8px) saturate(160%);
  
  /* Premium Shadows with green and red tints */
  --shadow-sm: 0 2px 8px rgba(0, 165, 80, 0.12);
  --shadow-md: 0 4px 16px rgba(0, 165, 80, 0.16);
  --shadow-lg: 0 8px 32px rgba(0, 165, 80, 0.2);
  --shadow-xl: 0 16px 64px rgba(0, 165, 80, 0.24);
  --shadow-glow: 0 0 50px rgba(0, 165, 80, 0.35);
  --shadow-glow-strong: 0 0 80px rgba(0, 165, 80, 0.45);
  --shadow-red: 0 4px 20px rgba(196, 30, 58, 0.28);
  --shadow-green: 0 4px 20px rgba(0, 165, 80, 0.28);
  --shadow-red-glow: 0 0 50px rgba(196, 30, 58, 0.35);
}

/* ==================== GLOBAL RESET & BASE ==================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
  transition: background-color var(--transition-slow), color var(--transition-slow);
}

/* Arabic Font Support */
html[dir="rtl"],
html[dir="rtl"] body,
html[dir="rtl"] *:not(.logo):not(.logo *) {
  font-family: 'Noto Kufi Arabic', var(--font-body), sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6 {
  font-family: 'Noto Kufi Arabic', var(--font-heading), sans-serif;
  font-weight: 700;
}

html[dir="rtl"] .hero-title {
  font-family: 'Noto Kufi Arabic', var(--font-display), serif;
  font-weight: 800;
}

/* Selection */
::selection {
  background-color: rgba(124, 58, 237, 0.4);
  color: var(--color-text-primary);
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--color-surface-elevated);
  border-radius: var(--radius-full);
  border: 2px solid var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-primary);
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--spacing-md);
  color: var(--color-text-secondary);
}

a {
  color: var(--color-accent-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

a:hover {
  color: var(--color-accent-secondary);
}

/* ==================== UTILITY CLASSES ==================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
}

.section {
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
}

.gradient-text {
  background: var(--color-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--color-accent-primary);
  color: white;
  padding: var(--spacing-sm) var(--spacing-md);
  z-index: 999;
  border-radius: var(--radius-md);
}

.skip-link:focus {
  top: var(--spacing-sm);
  left: var(--spacing-sm);
}

/* ==================== ANIMATED BACKGROUND ==================== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-background);
  pointer-events: none;
  overflow: hidden;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.mesh-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
  filter: blur(80px);
  animation: meshMove 20s ease-in-out infinite;
}

@keyframes meshMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.1); }
  66% { transform: translate(-50px, 50px) scale(0.9); }
}

#particleCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==================== HEADER & NAVIGATION ==================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: var(--z-sticky);
  background: rgba(10, 8, 21, 0.6);
  backdrop-filter: blur(30px) saturate(200%);
  -webkit-backdrop-filter: blur(30px) saturate(200%);
  border-bottom: 1px solid rgba(217, 70, 239, 0.3);
  transition: all var(--transition-base);
  box-shadow: 0 8px 32px rgba(217, 70, 239, 0.15);
}

.site-header.scrolled {
  background: rgba(10, 8, 21, 0.75);
  box-shadow: 0 16px 48px rgba(217, 70, 239, 0.25), var(--shadow-glow);
  backdrop-filter: blur(40px) saturate(220%);
  -webkit-backdrop-filter: blur(40px) saturate(220%);
}

.header-glow {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gradient-2);
  opacity: 0;
  transition: opacity var(--transition-base);
  box-shadow: var(--shadow-glow);
}

.site-header.scrolled .header-glow {
  opacity: 1;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-sm) var(--spacing-lg);
  max-width: 1400px;
  margin: 0 auto;
}

/* Logo */
.logo-section {
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
  transition: all var(--transition-base);
}

.logo:hover {
  color: var(--color-accent-primary);
  transform: scale(1.02);
}

.logo-icon {
  font-size: 1.75rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: var(--font-size-lg);
  letter-spacing: -0.5px;
}

.logo-tag {
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
  font-weight: 500;
  font-family: var(--font-secondary);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--spacing-xs);
}

.nav-link {
  position: relative;
  padding: 0.75rem 1rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  font-size: var(--font-size-sm);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.8rem;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gradient-2);
  transform: translateX(-50%);
  transition: width var(--transition-base);
}

.nav-link:hover {
  color: var(--color-text-primary);
  background: rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

.nav-link:hover::before {
  width: 80%;
}

.nav-link.active {
  color: var(--color-accent-primary);
  background: rgba(124, 58, 237, 0.2);
}

.nav-link.active::before {
  width: 100%;
}

/* Navigation Controls */
.nav-controls {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.language-select {
  padding: var(--spacing-xs) var(--spacing-md);
  background: var(--color-surface);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-primary);
}

.language-select:hover {
  background: var(--color-surface-elevated);
  border-color: var(--color-border-light);
}

.language-select:focus {
  outline: none;
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
}

.theme-toggle:hover {
  background: var(--color-surface-elevated);
  border-color: var(--color-accent-primary);
  transform: scale(1.05);
}

.theme-toggle svg {
  position: absolute;
  transition: all var(--transition-base);
}

.theme-toggle .sun-icon {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

.theme-toggle .moon-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

body.light-mode .theme-toggle .sun-icon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

body.light-mode .theme-toggle .moon-icon {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  z-index: 3;
  transition: all var(--transition-base);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  gap: 4px;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2xl) 0;
  overflow: hidden;
}

.hero-gradient-orbs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: orbFloat 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.5), transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.4), transparent);
  top: 50%;
  right: -150px;
  animation-delay: 3s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.4), transparent);
  bottom: -100px;
  left: 50%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(100px, -80px) scale(1.1); }
  66% { transform: translate(-80px, 100px) scale(0.9); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-xs) var(--spacing-md);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(217, 70, 239, 0.1));
  backdrop-filter: blur(15px) saturate(180%);
  border: 1px solid rgba(217, 70, 239, 0.3);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-xl);
  position: relative;
  animation: badgePulse 2s ease-in-out infinite;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
}

.badge-pulse {
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0; }
}

@keyframes badgePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

.badge-icon {
  font-size: var(--font-size-lg);
  animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  75% { transform: rotate(10deg) scale(1.1); }
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  letter-spacing: -2px;
}

.title-line {
  display: block;
}

.title-year {
  display: inline-block;
  font-size: 0.5em;
  font-weight: 600;
  color: var(--color-text-tertiary);
  font-family: var(--font-secondary);
  margin-left: var(--spacing-sm);
  opacity: 0.8;
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto var(--spacing-xl);
  line-height: 1.8;
}

/* Service Pills */
.hero-services {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.service-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 0.75rem 1.5rem;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: all var(--transition-base);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
}

.service-pill:hover {
  background: rgba(124, 58, 237, 0.2);
  border-color: rgba(124, 58, 237, 0.4);
  color: var(--color-text-primary);
  transform: translateY(-2px);
}

.service-pill.student {
  color: #3b82f6;
}

.service-pill.student:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
}

.service-pill.business {
  color: #06b6d4;
}

.service-pill.business:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
}

.service-pill svg {
  width: 16px;
  height: 16px;
}

/* Hero CTA */
.hero-cta-group {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--spacing-2xl);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: 1rem 2rem;
  font-size: var(--font-size-base);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-gradient-2);
  color: white;
  box-shadow: 0 0 50px rgba(217, 70, 239, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 70px rgba(217, 70, 239, 0.6);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  transition: transform var(--transition-smooth);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(10, 8, 21, 0.7), rgba(20, 15, 35, 0.6));
  color: var(--color-text-primary);
  border: 1px solid rgba(217, 70, 239, 0.25);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(20, 15, 35, 0.8), rgba(30, 20, 45, 0.7));
  border-color: rgba(217, 70, 239, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.15);
  backdrop-filter: blur(20px) saturate(200%);
}

.btn-glass {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(217, 70, 239, 0.1));
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(217, 70, 239, 0.3);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
}

.btn-icon {
  font-size: 1.25em;
}

.btn-arrow {
  transition: transform var(--transition-base);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-glow {
  box-shadow: var(--shadow-glow);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
}

.hero-dedication {
  margin-top: var(--spacing-2xl);
  padding: var(--spacing-xl) var(--spacing-2xl);
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, rgba(250, 204, 21, 0.32), transparent 55%),
              radial-gradient(circle at 100% 100%, rgba(250, 204, 21, 0.22), transparent 60%),
              rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(250, 204, 21, 0.65);
  box-shadow: 0 32px 80px rgba(15, 15, 35, 0.85), 0 0 0 1px rgba(250, 204, 21, 0.3);
  backdrop-filter: blur(30px) saturate(220%);
  -webkit-backdrop-filter: blur(30px) saturate(220%);
  position: relative;
  overflow: hidden;
}

.hero-dedication::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 20% 0%, rgba(250, 250, 210, 0.65), transparent 55%),
    radial-gradient(circle at 80% 100%, rgba(250, 204, 21, 0.4), transparent 60%);
  opacity: 0.85;
  pointer-events: none;
}

.hero-dedication-ar,
.hero-dedication-en {
  position: relative;
  z-index: 1;
}

.hero-dedication-ar {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: #facc15;
  text-align: center;
  margin-bottom: var(--spacing-xs);
  letter-spacing: 0.08em;
  font-family: 'Noto Kufi Arabic', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hero-dedication-en {
  font-size: var(--font-size-sm);
  color: rgba(248, 250, 252, 0.9);
  text-align: center;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 800;
  background: var(--color-gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: var(--spacing-xs);
}

.stat-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--color-border);
}

/* Hero Visual Cards */
.hero-visual {
  display: none;
}

.visual-card {
  position: absolute;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--spacing-md);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  box-shadow: var(--shadow-lg);
  animation: cardFloat 6s ease-in-out infinite;
  transition: all var(--transition-base);
}

.visual-card:hover {
  transform: translateY(-30px) rotate(0deg) !important;
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.card-badge {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(217, 70, 239, 0.3));
  color: var(--color-accent-secondary);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-sm);
}

.visual-card .card-icon {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-xs);
  display: block;
}

.visual-card .card-title {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  margin-bottom: var(--spacing-xs);
  font-weight: 600;
}

.visual-card .card-value {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-xs);
}

.visual-card .card-desc {
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
  opacity: 0.8;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--spacing-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-sm);
  color: var(--color-text-tertiary);
  animation: bounce 2s ease-in-out infinite;
}

.scroll-text {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

.scroll-mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-full);
  position: relative;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--color-accent-primary);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-3xl);
}

.section-tag {
  display: inline-block;
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--color-accent-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-md);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--spacing-md);
  letter-spacing: -1px;
}

.section-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* ==================== FEATURES SECTION ==================== */
.features-section {
  background: var(--color-bg-secondary);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-lg);
}

.feature-card {
  position: relative;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(217, 70, 239, 0.05));
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(217, 70, 239, 0.25);
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  transition: all var(--transition-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.08);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gradient-2);
  transform: scaleX(0);
  transition: transform var(--transition-base);
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.6);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 70, 239, 0.5);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(217, 70, 239, 0.1));
  box-shadow: 0 16px 48px rgba(124, 58, 237, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(25px) saturate(200%);
}

.feature-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(217, 70, 239, 0.2), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.feature-card:hover .feature-card-glow {
  opacity: 1;
}

.feature-header {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(217, 70, 239, 0.15));
  backdrop-filter: blur(10px) saturate(180%);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  border: 1px solid rgba(217, 70, 239, 0.25);
}

.feature-card:hover .feature-icon-wrapper {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(217, 70, 239, 0.25));
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(217, 70, 239, 0.15);
}

.feature-icon {
  font-size: 2rem;
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.feature-description {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--spacing-lg);
  flex-grow: 1;
}

.feature-footer {
  margin-top: auto;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-accent-primary);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}

.feature-link:hover {
  gap: var(--spacing-sm);
}

.feature-link svg {
  transition: transform var(--transition-base);
}

.feature-link:hover svg {
  transform: translateX(4px);
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: var(--color-bg-primary);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-border-light);
}

.faq-item[open] {
  border-color: var(--color-accent-primary);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-lg);
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  position: relative;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: rgba(99, 102, 241, 0.05);
}

.faq-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.faq-q-text {
  flex: 1;
  font-size: var(--font-size-base);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-text-tertiary);
  transition: transform var(--transition-base);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-accent-primary);
}

.faq-answer {
  padding: 0 var(--spacing-lg) var(--spacing-lg) calc(var(--spacing-lg) + 1.5rem + var(--spacing-md));
  animation: fadeIn var(--transition-base);
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin: 0;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  position: relative;
  background: var(--color-bg-secondary);
}

.contact-gradient-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.1), transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-2xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  text-decoration: none;
  color: var(--color-text-primary);
  transition: all var(--transition-base);
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-gradient-2);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover {
  transform: translateY(-12px);
  border-color: var(--color-border-accent);
  box-shadow: var(--shadow-xl);
}

.contact-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.contact-card:hover .contact-card-bg {
  opacity: 1;
  background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05), transparent 60%);
}

.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  margin-bottom: var(--spacing-lg);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.contact-icon-wrapper.whatsapp {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
}

.contact-icon-wrapper.email {
  background: rgba(124, 58, 237, 0.15);
  color: var(--color-accent-primary);
}

.contact-icon-wrapper.telegram {
  background: rgba(42, 171, 238, 0.1);
  color: #2aabee;
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.contact-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.contact-description {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--color-accent-primary);
  font-weight: 600;
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.contact-card:hover .contact-link {
  gap: var(--spacing-sm);
}

.contact-link svg {
  transition: transform var(--transition-base);
}

.contact-card:hover .contact-link svg {
  transform: translateX(4px);
}

/* Contact Info Cards */
.contact-icon-wrapper.facebook {
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
}


/* ==================== FOOTER ==================== */
.site-footer {
  position: relative;
  background: var(--color-bg-tertiary);
  padding: var(--spacing-3xl) 0 var(--spacing-lg);
  border-top: 1px solid var(--color-border);
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--color-gradient-2);
  opacity: 0.5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-3xl);
  margin-bottom: var(--spacing-3xl);
}

.footer-brand {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
}

.footer-tagline {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
}

.footer-dedication {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  font-style: italic;
  padding: var(--spacing-md);
  background: rgba(99, 102, 241, 0.05);
  border-left: 3px solid var(--color-accent-primary);
  border-radius: var(--radius-sm);
}

.footer-links-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.footer-column h4.footer-heading {
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-bottom: var(--spacing-md);
  color: var(--color-text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.footer-links a {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-accent-primary);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-xl);
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: var(--spacing-md);
}

.footer-copyright {
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
  margin: 0;
}

.footer-meta {
  display: flex;
  gap: var(--spacing-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-tertiary);
}

/* ==================== BACK TO TOP BUTTON ==================== */
.back-to-top {
  position: fixed;
  bottom: var(--spacing-lg);
  right: var(--spacing-lg);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  transition: all var(--transition-base);
  z-index: var(--z-sticky);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--color-accent-secondary);
  transform: translateY(-4px) scale(1.05);
  box-shadow: var(--shadow-glow-strong);
}

/* ==================== ANIMATIONS ==================== */
[data-aos] {
  opacity: 0;
  transition: all var(--transition-smooth);
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

/* ==================== LIGHT MODE UI ENHANCEMENTS ==================== */
/* Italian Flag Theme: Red, Green, White with Premium Typography */

/* Typography Overrides for Light Mode */
body.light-mode {
  font-family: var(--font-body);
}

body.light-mode h1,
body.light-mode h2,
body.light-mode h3,
body.light-mode h4,
body.light-mode h5,
body.light-mode h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

body.light-mode .hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.03em;
}

body.light-mode .section-title {
  font-family: var(--font-heading);
  font-weight: 800;
}

body.light-mode p,
body.light-mode li,
body.light-mode span {
  font-family: var(--font-body);
}

/* Hero Section - Italian Flag Gradient Background */
body.light-mode .hero {
  background: linear-gradient(135deg, 
    rgba(0, 165, 80, 0.08) 0%, 
    rgba(255, 255, 255, 1) 30%,
    rgba(255, 255, 255, 1) 70%,
    rgba(196, 30, 58, 0.08) 100%);
  position: relative;
}

body.light-mode .hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: linear-gradient(180deg, 
    rgba(0, 165, 80, 0.12) 0%, 
    transparent 100%);
  pointer-events: none;
}

body.light-mode .hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 500px;
  background: linear-gradient(0deg, 
    rgba(196, 30, 58, 0.12) 0%, 
    transparent 100%);
  pointer-events: none;
}

/* Hero Orbs - Italian Colors */
body.light-mode .orb-1 {
  background: radial-gradient(circle, rgba(0, 165, 80, 0.25), transparent);
  filter: blur(120px);
}

body.light-mode .orb-2 {
  background: radial-gradient(circle, rgba(196, 30, 58, 0.22), transparent);
  filter: blur(120px);
}

body.light-mode .orb-3 {
  background: radial-gradient(circle, rgba(0, 165, 80, 0.18), transparent);
  filter: blur(120px);
}

/* Hero Badge */
body.light-mode .hero-badge {
  background: linear-gradient(135deg, rgba(0, 165, 80, 0.15), rgba(0, 165, 80, 0.08));
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(0, 165, 80, 0.4);
  color: #00a550;
  font-weight: 700;
  font-family: var(--font-heading);
  box-shadow: 0 8px 28px rgba(0, 165, 80, 0.25);
}

/* Hero Title - Red Text with Elegant Font */
body.light-mode .hero-title {
  color: #c41e3a;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(196, 30, 58, 0.12);
  line-height: 1.1;
}

/* Hero Subtitle - Green Text */
body.light-mode .hero-subtitle {
  color: #0f472d;
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* Buttons - Enhanced Italian Flag Colors */
body.light-mode .btn-primary {
  background: linear-gradient(135deg, #00a550 0%, #10b981 100%);
  border: none;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 32px rgba(0, 165, 80, 0.35);
}

body.light-mode .btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 165, 80, 0.5);
}

body.light-mode .btn-secondary {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(196, 30, 58, 0.1));
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(196, 30, 58, 0.4);
  color: #c41e3a;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 28px rgba(196, 30, 58, 0.15);
}

body.light-mode .btn-secondary:hover {
  background: linear-gradient(135deg, #c41e3a 0%, #dc2626 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.4);
}

/* Stats Section */
body.light-mode .hero-stats {
  background: linear-gradient(135deg, 
    rgba(0, 165, 80, 0.08) 0%, 
    rgba(255, 255, 255, 0.98) 50%, 
    rgba(196, 30, 58, 0.08) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(0, 165, 80, 0.3);
  box-shadow: 0 12px 40px rgba(0, 165, 80, 0.18);
}

body.light-mode .stat-number {
  font-family: var(--font-display);
  font-weight: 900;
  background: linear-gradient(135deg, #00a550, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

body.light-mode .stat-label {
  color: #0f472d;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

body.light-mode .stat-divider {
  background: linear-gradient(to bottom, 
    transparent, 
    #00a550, 
    #c41e3a, 
    transparent);
  width: 3px;
}

/* Section Headers - Strategic Color Use */
body.light-mode .section-title {
  color: #c41e3a;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 15px rgba(196, 30, 58, 0.1);
}

body.light-mode .section-subtitle {
  color: #0f472d;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.light-mode .section-description {
  color: #1a4d2e;
  font-family: var(--font-body);
  line-height: 1.8;
  letter-spacing: 0.005em;
}

/* Feature Cards - Enhanced Layout */
body.light-mode .feature-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95), 
    rgba(0, 165, 80, 0.05));
  backdrop-filter: blur(20px) saturate(180%);
  border: 2px solid rgba(0, 165, 80, 0.25);
  box-shadow: 0 8px 32px rgba(0, 165, 80, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode .feature-card:hover {
  border-color: rgba(0, 165, 80, 0.55);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1), 
    rgba(0, 165, 80, 0.08));
  box-shadow: 0 16px 48px rgba(0, 165, 80, 0.28);
  backdrop-filter: blur(25px) saturate(200%);
  transform: translateY(-10px);
}

body.light-mode .feature-icon {
  background: linear-gradient(135deg, #00a550, #10b981);
  color: white;
  box-shadow: 0 8px 32px rgba(0, 165, 80, 0.3);
  font-size: 2.5rem;
}

body.light-mode .feature-card:nth-child(even) .feature-icon {
  background: linear-gradient(135deg, #c41e3a, #dc2626);
  box-shadow: 0 8px 32px rgba(196, 30, 58, 0.3);
}

body.light-mode .feature-title {
  color: #0f472d;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.light-mode .feature-card:nth-child(even) .feature-title {
  color: #c41e3a;
}

body.light-mode .feature-description {
  color: #1a4d2e;
  font-family: var(--font-body);
  line-height: 1.7;
  letter-spacing: 0.005em;
}

body.light-mode .feature-link {
  color: #00a550;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}

body.light-mode .feature-card:nth-child(even) .feature-link {
  color: #c41e3a;
}

/* Tool Cards - Refined Design */
body.light-mode .tool-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98), 
    rgba(196, 30, 58, 0.04));
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(0, 165, 80, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode .tool-card:hover {
  border-color: rgba(196, 30, 58, 0.45);
  box-shadow: 0 16px 48px rgba(196, 30, 58, 0.25);
  backdrop-filter: blur(20px) saturate(200%);
  transform: translateY(-8px);
}

body.light-mode .tool-icon {
  font-size: 3.5rem;
  filter: drop-shadow(0 8px 28px rgba(0, 165, 80, 0.3));
}

body.light-mode .tool-title {
  color: #c41e3a;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.light-mode .tool-description {
  color: #0f472d;
  font-family: var(--font-body);
  line-height: 1.7;
  letter-spacing: 0.005em;
}

/* Site Header - Clean & Elegant */
body.light-mode .site-header {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98), 
    rgba(0, 165, 80, 0.03));
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 3px solid;
  border-image: linear-gradient(90deg, #00a550, #ffffff, #c41e3a) 1;
  box-shadow: 0 8px 32px rgba(0, 165, 80, 0.15);
}

body.light-mode .logo-main {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #00a550, #c41e3a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-mode .logo-tag {
  color: #00a550;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.8rem;
}

body.light-mode .nav-link {
  color: #0f472d;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.01em;
}

body.light-mode .nav-link:hover {
  color: #00a550;
}

/* Footer - Elegant Tricolor */
body.light-mode .footer {
  background: linear-gradient(135deg, 
    rgba(0, 165, 80, 0.05) 0%, 
    rgba(255, 255, 255, 0.98) 50%, 
    rgba(196, 30, 58, 0.05) 100%);
  border-top: 4px solid;
  border-image: linear-gradient(90deg, #00a550, #ffffff, #c41e3a) 1;
}

body.light-mode .footer-title {
  color: #c41e3a;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.01em;
}

body.light-mode .footer-link {
  color: #0f472d;
  font-family: var(--font-body);
  font-weight: 500;
}

body.light-mode .footer-link:hover {
  color: #00a550;
}

/* FAQ Section */
body.light-mode .faq-item {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98), 
    rgba(0, 165, 80, 0.04));
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(0, 165, 80, 0.25);
}

body.light-mode .faq-item.active {
  border-color: rgba(0, 165, 80, 0.55);
  box-shadow: 0 12px 40px rgba(0, 165, 80, 0.25);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1), 
    rgba(0, 165, 80, 0.06));
}

body.light-mode .faq-question {
  color: #0f472d;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.light-mode .faq-answer {
  color: #1a4d2e;
  font-family: var(--font-body);
  line-height: 1.8;
  letter-spacing: 0.005em;
}

body.light-mode .faq-icon {
  background: linear-gradient(135deg, #00a550, #10b981);
  color: white;
  font-weight: 800;
  box-shadow: 0 8px 28px rgba(0, 165, 80, 0.3);
}

/* Animated Background */
body.light-mode .animated-bg {
  background: linear-gradient(135deg, 
    rgba(0, 165, 80, 0.04) 0%, 
    rgba(255, 255, 255, 0.9) 50%, 
    rgba(196, 30, 58, 0.04) 100%);
}

body.light-mode .mesh-gradient {
  background: radial-gradient(ellipse at top, 
    rgba(0, 165, 80, 0.15), 
    transparent 50%),
  radial-gradient(ellipse at bottom, 
    rgba(196, 30, 58, 0.15), 
    transparent 50%);
}

/* Contact Section */
body.light-mode .contact-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.98), 
    rgba(0, 165, 80, 0.04));
  backdrop-filter: blur(15px) saturate(180%);
  border: 2px solid rgba(0, 165, 80, 0.25);
}

body.light-mode .contact-card:hover {
  border-color: rgba(0, 165, 80, 0.55);
  box-shadow: 0 16px 48px rgba(0, 165, 80, 0.28);
  backdrop-filter: blur(20px) saturate(200%);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 1), 
    rgba(0, 165, 80, 0.06));
}

body.light-mode .contact-icon {
  background: linear-gradient(135deg, #00a550, #10b981);
  color: white;
  box-shadow: 0 8px 32px rgba(0, 165, 80, 0.3);
}

body.light-mode .contact-title {
  color: #0f472d;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.01em;
}

body.light-mode .contact-description {
  color: #1a4d2e;
  font-family: var(--font-body);
  line-height: 1.7;
}

/* Back to Top Button */
body.light-mode .back-to-top {
  background: var(--color-gradient-1);
  color: white;
  font-weight: 700;
  box-shadow: 0 6px 25px rgba(0, 146, 70, 0.3);
}

body.light-mode .back-to-top:hover {
  box-shadow: 0 10px 40px rgba(0, 146, 70, 0.45);
  transform: translateY(-4px);
}

/* About Section */
body.light-mode .about-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.95), 
    rgba(206, 43, 55, 0.03));
  border: 2px solid rgba(206, 43, 55, 0.2);
}

body.light-mode .about-card:hover {
  border-color: rgba(206, 43, 55, 0.4);
  box-shadow: 0 10px 35px rgba(206, 43, 55, 0.2);
}

body.light-mode .about-title {
  color: #ce2b37;
  font-family: var(--font-heading);
  font-weight: 700;
}

body.light-mode .about-text {
  color: #1a4d2e;
  line-height: 1.7;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-lg);
  }

  .container {
    padding: 0 var(--spacing-lg);
  }

  .hero-cta-group {
    flex-wrap: wrap;
    gap: var(--spacing-md);
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: var(--font-size-base);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: var(--font-size-4xl);
  }
}

@media (max-width: 912px) {
  .menu-toggle {
    display: flex;
  }

  .header-container {
    padding: var(--spacing-xs) var(--spacing-md);
  }

  .logo-main {
    font-size: var(--font-size-base);
  }

  .logo-tag {
    font-size: 0.7rem;
  }

  .hero {
    min-height: 75vh;
    padding: var(--spacing-xl) 0;
  }

  .hero-container {
    flex-direction: column;
    gap: var(--spacing-lg);
  }

  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .btn {
    width: auto;
    flex: 1;
    min-width: 140px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* Typography */
  :root {
    --font-size-5xl: 2.5rem;
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
    --font-size-2xl: 1.25rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
  }

  /* General */
  body {
    font-size: var(--font-size-sm);
  }

  .container {
    padding: 0 var(--spacing-md);
    max-width: 100%;
  }

  /* Header */
  .menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: var(--color-bg-secondary);
    backdrop-filter: var(--blur-glass-strong);
    -webkit-backdrop-filter: var(--blur-glass-strong);
    flex-direction: column;
    align-items: stretch;
    padding: var(--spacing-2xl) var(--spacing-lg);
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-smooth);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.open,
  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: var(--spacing-xs);
  }

  .nav-link {
    width: 100%;
    padding: var(--spacing-md);
    font-size: var(--font-size-base);
  }

  .nav-controls {
    margin-top: auto;
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-md);
  }

  .language-select,
  .theme-toggle {
    width: 100%;
    padding: var(--spacing-md);
  }

  /* Hero */
  .hero {
    min-height: 80vh;
    padding: var(--spacing-2xl) 0;
  }

  .hero-title {
    font-size: var(--font-size-4xl);
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: var(--font-size-base);
    margin-top: var(--spacing-md);
  }

  .hero-stats {
    gap: var(--spacing-lg);
    flex-wrap: wrap;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    flex: 0 0 calc(50% - var(--spacing-sm));
  }

  .hero-badge {
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .hero-title {
    letter-spacing: -1px;
    margin-bottom: var(--spacing-md);
  }

  .title-year {
    display: block;
    margin-left: 0;
    margin-top: var(--spacing-xs);
  }

  .hero-subtitle {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .btn {
    width: 100%;
    padding: 1rem var(--spacing-md);
    font-size: var(--font-size-sm);
    justify-content: center;
    border-radius: var(--radius-md);
  }

  .btn-icon {
    font-size: 1.1em;
  }

  .hero-stats {
    gap: var(--spacing-md);
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 100%;
  }

  .stat-item {
    flex: 1;
    min-width: 0;
  }

  .stat-number {
    font-size: var(--font-size-2xl);
  }

  .stat-label {
    font-size: var(--font-size-xs);
    letter-spacing: 0.5px;
  }

  .stat-divider {
    display: none;
  }

  .hero-dedication {
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-lg);
    border-radius: 20px;
  }

  .hero-dedication-ar {
    font-size: var(--font-size-sm);
    letter-spacing: 0.05em;
  }

  .hero-dedication-en {
    font-size: var(--font-size-xs);
  }

  /* Sections */
  .section {
    padding: var(--spacing-2xl) 0;
  }

  .section-header {
    margin-bottom: var(--spacing-2xl);
  }

  .section-title {
    font-size: var(--font-size-3xl);
    line-height: 1.2;
  }

  .section-description {
    font-size: var(--font-size-sm);
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .feature-card {
    padding: var(--spacing-lg);
  }

  .feature-icon {
    font-size: 2.5rem;
  }

  .feature-title {
    font-size: var(--font-size-lg);
  }

  .feature-description {
    font-size: var(--font-size-sm);
  }

  /* Tools */
  .tools-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-links-wrapper {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .footer-column {
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
  }

  .footer-column:last-child {
    border-bottom: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--spacing-md);
  }

  .footer-links {
    font-size: var(--font-size-sm);
  }
}

@media (max-width: 640px) {
  :root {
    --font-size-5xl: 2rem;
    --font-size-4xl: 1.75rem;
    --font-size-3xl: 1.5rem;
    --font-size-2xl: 1.125rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 1.5rem;
    --spacing-2xl: 2rem;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .site-header {
    padding: var(--spacing-md) 0;
  }

  .header-logo {
    font-size: var(--font-size-2xl);
  }

  .hero {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }
  .site-header {
    padding: var(--spacing-xs) var(--spacing-md);
  }

  .header-container {
    gap: var(--spacing-md);
  }

  .logo-text {
    gap: 2px;
  }

  .logo-main {
    font-size: var(--font-size-sm);
  }

  .logo-tag {
    font-size: 0.65rem;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: var(--spacing-lg) 0;
    margin-top: var(--spacing-lg);
  }

  .hero-container {
    flex-direction: column;
    padding: 0 var(--spacing-md);
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-badge {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xs);
  }

  .hero-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
  }

  .title-year {
    display: block;
    margin-top: var(--spacing-xs);
  }

  .hero-subtitle {
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
  }

  .hero-cta-group {
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
  }

  .btn {
    padding: 0.875rem var(--spacing-md);
    font-size: var(--font-size-xs);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-stats {
    gap: var(--spacing-sm);
    flex-wrap: nowrap;
  }

  .stat-number {
    font-size: var(--font-size-xl);
  }

  .stat-label {
    font-size: var(--font-size-xs);
    letter-spacing: 0.3px;
  }

  .hero-dedication {
    padding: var(--spacing-lg) var(--spacing-md);
    margin-top: var(--spacing-lg);
    border-radius: 16px;
  }

  .hero-dedication-ar {
    font-size: var(--font-size-sm);
  }

  .hero-dedication-en {
    font-size: var(--font-size-xs);
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .stat-item {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  :root {
    --font-size-5xl: 1.75rem;
    --font-size-4xl: 1.5rem;
    --font-size-3xl: 1.25rem;
    --font-size-2xl: 1rem;
    --font-size-lg: 1rem;
    --spacing-lg: 1rem;
    --spacing-xl: 1.25rem;
    --spacing-2xl: 1.5rem;
  }

  .container {
    padding: 0 var(--spacing-md);
  }

  .site-header {
    padding: var(--spacing-xs) var(--spacing-sm);
  }

  .header-container {
    padding: var(--spacing-xs) var(--spacing-sm);
    gap: var(--spacing-md);
  }

  .logo {
    gap: var(--spacing-xs);
  }

  .logo-icon {
    font-size: 1.5rem;
  }

  .logo-main {
    font-size: var(--font-size-sm);
    letter-spacing: -0.3px;
  }

  .logo-tag {
    font-size: var(--font-size-xs);
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hamburger {
    width: 20px;
    height: 16px;
  }

  .hamburger span {
    height: 2px;
  }

  .hero {
    padding: var(--spacing-lg) 0;
    min-height: auto;
    margin-top: var(--spacing-xl);
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: 0 var(--spacing-sm);
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    width: 100%;
  }

  .hero-badge {
    display: inline-flex;
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    white-space: nowrap;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.3px;
    word-break: break-word;
  }

  .title-line {
    display: block;
  }

  .title-year {
    display: block;
    font-size: 0.4em;
    margin-top: var(--spacing-xs);
  }

  .hero-subtitle {
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
    word-break: break-word;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
  }

  .btn {
    width: 100%;
    padding: 0.7rem var(--spacing-sm);
    font-size: var(--font-size-xs);
    border-radius: var(--radius-md);
    justify-content: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .btn-icon {
    font-size: 0.9em;
    flex-shrink: 0;
  }

  .btn-arrow {
    display: none;
  }

  .hero-stats {
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    justify-content: center;
    margin: var(--spacing-md) 0;
  }

  .stat-item {
    flex: 0 0 calc(33.333% - 4px);
    min-width: 70px;
  }

  .stat-number {
    font-size: var(--font-size-lg);
    font-weight: 700;
  }

  .stat-label {
    font-size: var(--font-size-xs);
    letter-spacing: 0px;
  }

  .stat-divider {
    display: none;
  }

  .hero-dedication {
    display: none;
  }

  .section {
    padding: var(--spacing-xl) 0;
  }

  .section-title {
    font-size: var(--font-size-2xl);
  }

  .section-description {
    font-size: var(--font-size-xs);
  }

  .features-grid,
  .tools-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
  }

  .feature-card,
  .tool-card {
    padding: var(--spacing-md);
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-title {
    font-size: var(--font-size-base);
  }

  .feature-description {
    font-size: var(--font-size-xs);
  }

  .footer-heading {
    font-size: var(--font-size-base);
  }

  .footer-links {
    font-size: var(--font-size-xs);
  }

  .stat-item {
    flex: 1 1 auto;
  }
}

/* ==================== PRINT STYLES ==================== */
@media print {
  .site-header,
  .back-to-top,
  .scroll-indicator,
  .animated-bg {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
  }
}


