/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Font Declarations */
@font-face {
    font-family: 'ivymode';
    src: url('https://use.typekit.net/af/442562/00000000000000007735ce75/31/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n2&v=3') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

.ivymode {
    font-family: 'ivymode', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Import Lato from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

.lato-wght-300-400-700 {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Advanced Global Styles with Modern Design System */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

:root {
    /* Modern Color System - Professional Red Theme */
    --primary-50: #FEF2F2;
    --primary-100: #FEE2E2;
    --primary-200: #FECACA;
    --primary-300: #FCA5A5;
    --primary-400: #F87171;
    --primary-500: #F93E51;
    --primary-600: #E02D3F;
    --primary-700: #B91C1C;
    --primary-800: #991B1B;
    --primary-900: #7F1D1D;
    
    /* Neutral System */
    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #E5E5E5;
    --neutral-300: #D4D4D4;
    --neutral-400: #A3A3A3;
    --neutral-500: #737373;
    --neutral-600: #525252;
    --neutral-700: #404040;
    --neutral-800: #262626;
    --neutral-900: #171717;
    
    /* Semantic Colors */
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-emerald: #10B981;
    --accent-amber: #F59E0B;
    
    /* Glass & Blur Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --blur-light: blur(20px);
    --blur-heavy: blur(40px);
    
    /* Advanced Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 20px rgba(249, 62, 81, 0.3);
    --shadow-glow-intense: 0 0 40px rgba(249, 62, 81, 0.4);
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
    --gradient-mesh: radial-gradient(circle at 20% 50%, var(--primary-500) 0%, transparent 50%), 
                     radial-gradient(circle at 80% 20%, var(--accent-purple) 0%, transparent 50%), 
                     radial-gradient(circle at 40% 80%, var(--accent-blue) 0%, transparent 50%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    
    /* Animation Easings */
    --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-back: cubic-bezier(0.68, -0.6, 0.32, 1.6);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Timing System */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 800ms;
    
    /* Typography Scale */
    --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: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing Scale */
    --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;
}

/* Advanced Animation Framework */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-10px) rotate(1deg); }
    66% { transform: translateY(5px) rotate(-1deg); }
}

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(10px) rotate(-1deg); }
    66% { transform: translateY(-5px) rotate(1deg); }
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

/* Modern Utility Classes */
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-reverse { animation: floatReverse 8s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-fade-up { animation: fadeInUp 0.8s var(--ease-out-expo); }
.animate-scale-in { animation: scaleIn 0.5s var(--ease-out-expo); }

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s var(--ease-out-expo);
}

.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Effects */
.hover-lift {
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.hover-glow {
    transition: all var(--duration-normal) var(--ease-out-expo);
}

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

/* Glass Morphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: var(--blur-light);
    -webkit-backdrop-filter: var(--blur-light);
    border: 1px solid var(--glass-border);
}

/* Modern Button Styles */
.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all var(--duration-normal) var(--ease-out-expo);
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: var(--font-size-base);
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--duration-slow) var(--ease-out-expo);
}

.btn-modern:hover::before {
    left: 100%;
}

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

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

.btn-ghost {
    background: transparent;
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
}

.btn-ghost:hover {
    background: var(--primary-500);
    color: white;
    transform: translateY(-2px);
}

/* Modern Cards */
.card-modern {
    background: white;
    border-radius: 20px;
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: all var(--duration-normal) var(--ease-out-expo);
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.card-modern:hover::before {
    transform: scaleX(1);
}

/* Typography Improvements */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Focus States */
*:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Selection */
::selection {
    background-color: var(--primary-200);
    color: var(--primary-900);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--neutral-800);
    background-color: var(--neutral-50);
    font-size: var(--font-size-base);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: var(--neutral-900);
}

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

/* Prevent horizontal overflow */
*, *:before, *:after {
    box-sizing: border-box;
    max-width: 100%;
}

/* Ensure all containers don't overflow */
.max-w-7xl, .max-w-6xl, .max-w-5xl, .max-w-4xl, .max-w-3xl, .max-w-2xl, .max-w-xl, .max-w-lg, .max-w-md, .max-w-sm {
    max-width: 100%;
    overflow-x: hidden;
}

@media (min-width: 640px) {
    .max-w-sm { max-width: 24rem; }
    .max-w-md { max-width: 28rem; }
    .max-w-lg { max-width: 32rem; }
    .max-w-xl { max-width: 36rem; }
    .max-w-2xl { max-width: 42rem; }
    .max-w-3xl { max-width: 48rem; }
    .max-w-4xl { max-width: 56rem; }
    .max-w-5xl { max-width: 64rem; }
    .max-w-6xl { max-width: 72rem; }
    .max-w-7xl { max-width: 80rem; }
}

/* Ensure images and media don't overflow */
img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Fix for any potential wide elements */
.w-full {
    width: 100% !important;
    max-width: 100% !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'ivymode', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

.accent-text {
    color: var(--primary-gold);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Sticky Navigation with Glass Effect */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all 0.8s var(--ease-out-expo);
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 1px 0px rgba(255, 255, 255, 0.5);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.logo {
    z-index: 1001;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.5s var(--ease-out-expo);
    filter: drop-shadow(0 2px 8px rgba(249, 62, 81, 0.15));
}

.navbar.scrolled .logo-img {
    height: 38px;
    transform: scale(0.95);
}

.logo a:hover .logo-img {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 16px rgba(249, 62, 81, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    position: relative;
    color: var(--neutral-700);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-base);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    transition: all var(--duration-normal) var(--ease-out-expo);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width var(--duration-normal) var(--ease-out-expo);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(249, 62, 81, 0.05);
    opacity: 0;
    transition: opacity var(--duration-normal) var(--ease-out-expo);
    border-radius: 12px;
}

.nav-link:hover {
    color: var(--primary-600);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 70%;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link.active {
    color: var(--primary-600);
    background: rgba(249, 62, 81, 0.08);
    box-shadow: 0 2px 8px rgba(249, 62, 81, 0.15);
}

.nav-link.active::before {
    width: 70%;
}

/* Mobile Menu Enhancement */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
    border: none;
    background: none;
    border-radius: 8px;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.mobile-toggle:hover {
    background: rgba(249, 62, 81, 0.1);
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--neutral-700);
    transition: all var(--duration-normal) var(--ease-out-expo);
    border-radius: 2px;
}

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

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

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

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

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.3s ease;
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-text {
    font-family: 'ivymode', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-accent {
    font-family: 'ivymode', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--primary-gold);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 4px 16px rgba(249, 62, 81, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(249, 62, 81, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.8rem 0;
    z-index: 1001;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(249, 62, 81, 0.2);
    border-bottom: none;
    border-right: none;
    transform: translateX(-50%) rotate(45deg);
    backdrop-filter: blur(20px);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-content a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-red);
    transition: width 0.3s ease;
    z-index: -1;
}

.dropdown-content a:hover {
    color: var(--dark-bg);
    transform: translateX(5px);
}

.dropdown-content a:hover::before {
    width: 100%;
}

.dropdown-content a.active-service {
    background: rgba(249, 62, 81, 0.1);
    color: var(--primary-red);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

.hamburger:hover {
    background: rgba(255, 215, 0, 0.1);
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active .bar {
    background: var(--primary-gold);
}

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

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

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

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 999;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modern Hero Section with Advanced UI */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--neutral-50) 0%, rgba(249, 62, 81, 0.02) 100%);
    overflow: hidden;
    padding-top: 100px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(249, 62, 81, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(249, 62, 81, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
    filter: blur(1px);
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, var(--primary-300), var(--primary-500));
    top: 15%;
    left: 8%;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, var(--accent-blue), var(--accent-purple));
    top: 70%;
    right: 15%;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, var(--accent-emerald), var(--accent-amber));
    top: 40%;
    right: 25%;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--primary-200), var(--primary-400));
    bottom: 20%;
    left: 20%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-text {
    padding-right: 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 62, 81, 0.15);
    color: var(--primary-700);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(249, 62, 81, 0.25);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2em;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-200);
}

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

.stat-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-600);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--neutral-500);
    font-weight: 500;
}

.hero-visual {
    position: relative;
    height: 650px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-icons-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 300px;
    margin-left: auto;
    margin-bottom: 3rem;
    z-index: 2;
}

.floating-icon {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--neutral-200);
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-icon:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.icon-1 {
    animation-delay: 0.2s;
}

.icon-2 {
    animation-delay: 0.4s;
    margin-top: 2rem;
}

.icon-3 {
    grid-column: 1 / -1;
    justify-self: center;
    animation-delay: 0.6s;
    margin-top: 1rem;
}

.floating-shapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.shape-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0.6;
}

.shape-circle.green {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10B981, #34D399);
    top: 20%;
    right: -20px;
    animation: float 6s ease-in-out infinite;
}

.shape-circle.purple {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    bottom: 10%;
    right: -40px;
    animation: float 8s ease-in-out infinite reverse;
}

.performance-dashboard {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid var(--neutral-200);
    backdrop-filter: blur(10px);
    margin-top: 2rem;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.performance-dashboard:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--neutral-100);
}

.dashboard-title {
    font-weight: 600;
    color: var(--neutral-800);
    font-size: var(--font-size-base);
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    color: var(--neutral-600);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-emerald);
    border-radius: 50%;
}

.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-row {
    display: flex;
    align-items: center;
}

.metric-item {
    flex: 1;
}

.metric-label {
    font-size: var(--font-size-sm);
    color: var(--neutral-600);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.metric-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--accent-emerald);
    margin-bottom: 0.5rem;
}

.metric-progress {
    height: 6px;
    background: var(--neutral-200);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    width: 0%;
    transition: width 2s var(--ease-out-expo);
}

.progress-bar[data-progress="75"] {
    animation: fillProgress75 2s var(--ease-out-expo) forwards;
}

.progress-bar[data-progress="85"] {
    animation: fillProgress85 2s var(--ease-out-expo) forwards;
}

@keyframes fillProgress75 {
    to { width: 75%; }
}

@keyframes fillProgress85 {
    to { width: 85%; }
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 30%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    color: var(--white);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--gray-200);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-gold);
    color: var(--dark-bg);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.cta-button.secondary:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
    animation: cardFloat 4s ease-in-out infinite;
    text-align: center;
    color: var(--white);
}

.floating-card i {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.floating-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.floating-card p {
    color: var(--gray-200);
    margin: 0;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    color: var(--primary-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    text-decoration: none;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.fade-in-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.6s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.9s forwards;
}

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

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(249, 62, 81, 0.1);
    color: var(--primary-700);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid rgba(249, 62, 81, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* Enhanced Client Showcase */
.clients {
    padding: 6rem 0;
    background: var(--neutral-50);
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.client-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-normal) var(--ease-out-expo);
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-logo {
    margin-bottom: 1.5rem;
}

.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--neutral-100);
    border-radius: 12px;
    color: var(--neutral-600);
    font-weight: 600;
    transition: all var(--duration-normal) var(--ease-out-expo);
}

.logo-placeholder i {
    font-size: 2rem;
    color: var(--primary-500);
    margin-bottom: 0.5rem;
}

.client-card:hover .logo-placeholder {
    background: rgba(249, 62, 81, 0.05);
    color: var(--primary-600);
    transform: scale(1.05);
}

.client-metric {
    text-align: center;
}

.metric-value {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--accent-emerald);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label {
    font-size: var(--font-size-sm);
    color: var(--neutral-500);
    font-weight: 500;
}

/* Services Overview */
.services-overview {
    padding: 6rem 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

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

.service-icon i {
    font-size: 1.8rem;
    color: var(--dark-bg);
}

.service-card h3 {
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.stars {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-content p {
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    font-weight: 600;
}

.author-info h4 {
    color: var(--dark-bg);
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info span {
    color: var(--gray-600);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--gray-200);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: var(--gray-200);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-bg);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--gray-200);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    padding: 0.8rem;
    border: 1px solid var(--gray-600);
    border-radius: 25px;
    background: var(--gray-800);
    color: var(--white);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--gray-300);
}

.newsletter-btn {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--dark-bg);
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-300);
}

/* Our Work Section */
.our-work {
    padding: 5rem 0;
    background: var(--gray-100);
}
.our-work .section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.work-showcase {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}
.work-category {
    flex: 1 1 400px;
    min-width: 320px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 4px 24px var(--shadow-light);
    padding: 2rem;
    margin-bottom: 2rem;
}
.work-category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
}
.work-images {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}
.image-placeholder {
    width: 100%;
    min-width: 220px;
    max-width: 900px;
    min-height: 180px;
    background: var(--glass-bg);
    border: 2px dashed var(--primary-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 1.1rem;
    margin: 1rem auto;
    box-shadow: 0 4px 24px var(--shadow-light);
}
@media (max-width: 900px) {
    .work-showcase { flex-direction: column; gap: 2rem; }
    .work-category { min-width: 100%; border-radius: 16px; padding: 1rem; }
    .image-placeholder { min-height: 120px; border-radius: 12px; font-size: 1rem; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0;
        padding: 100px 0 2rem 0;
        z-index: 1001;
        border-left: 1px solid rgba(255, 215, 0, 0.2);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-link {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .nav-link::before {
        content: '';
        position: absolute;
        left: -100%;
        top: 0;
        width: 100%;
        height: 100%;
        background: var(--gradient-gold);
        transition: left 0.3s ease;
        z-index: -1;
    }
    
    .nav-link:hover::before {
        left: 0;
    }
    
    .nav-link:hover {
        color: var(--dark-bg);
        transform: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(249, 62, 81, 0.05);
        margin: 0;
        border-radius: 0;
        border: none;
        backdrop-filter: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
    }
    
    .dropdown-content::before {
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        max-height: 300px;
        padding: 0.5rem 0;
    }
    
    .dropdown-content a {
        padding: 0.8rem 2.5rem;
        font-size: 0.95rem;
        border-bottom: 1px solid rgba(255, 215, 0, 0.05);
    }
    
    .dropdown-content a:hover::before {
        width: 100%;
    }
    
    /* Enhanced dropdown toggle for mobile */
    .dropdown > .nav-link {
        position: relative;
    }
    
    .dropdown > .nav-link::after {
        content: '';
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 8px solid var(--white);
        transition: transform 0.3s ease;
    }
    
    .dropdown.active > .nav-link::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .newsletter-form {
        justify-content: center;
    }
    
    .newsletter-form input {
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 2rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
}

/* Enhanced Responsive Design for New Layout */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
        order: 2;
    }
    
    .hero-visual {
        height: auto;
        order: 1;
        margin-bottom: 3rem;
    }
    
    .hero-icons-grid {
        max-width: 280px;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .floating-icon {
        padding: 1.2rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--duration-normal) var(--ease-out-expo);
        border-top: 1px solid var(--neutral-200);
        gap: 1rem;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
        text-align: center;
        border-radius: 12px;
        background: var(--neutral-50);
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .hero {
        padding-top: 120px;
        padding-bottom: 2rem;
    }
    
    .hero-visual {
        height: auto;
        margin-bottom: 2rem;
    }
    
    .hero-icons-grid {
        max-width: 240px;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .floating-icon {
        padding: 1rem;
    }
    
    .icon-wrapper {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .performance-dashboard {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-lg);
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        height: auto;
    }
    
    .hero-icons-grid {
        max-width: 200px;
        gap: 0.75rem;
        margin-bottom: 1rem;
        grid-template-columns: 1fr;
    }
    
    .icon-2 {
        margin-top: 0;
    }
    
    .icon-3 {
        margin-top: 0;
    }
    
    .floating-icon {
        padding: 0.75rem;
    }
    
    .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .card-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .floating-card h3 {
        font-size: var(--font-size-base);
        margin-bottom: 0.25rem;
    }
    
    .floating-card p {
        font-size: var(--font-size-xs);
    }
    
    .performance-dashboard {
        padding: 0.75rem;
    }
    
    .container {
        padding: 0 1rem;
    }
}
