/* ====================
   VEDAA WORLD - PREMIUM MODERN DESIGN
   Revolutionary UI/UX Design System
   ==================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Revolutionary Color System */
    --primary: #8bc63f;
    --primary-dark: #6a9730;
    --primary-light: #c1e07a;
    
    --secondary: #4ECDC4;
    --secondary-dark: #45B7B8;
    --secondary-light: #6BCCC8;
    
    --accent: #8bc63f;
    --accent-dark: #6a9730;
    
    --neutral-000: #FFFFFF;
    --neutral-050: #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;
    
    /* Advanced Gradients */
    --gradient-primary: linear-gradient(135deg, #8bc63f 0%, #6a9730 100%);
    --gradient-secondary: linear-gradient(135deg, #4ECDC4 0%, #45B7B8 100%);
    --gradient-accent: linear-gradient(135deg, #8bc63f 0%, #6a9730 100%);
    --gradient-hero: linear-gradient(135deg, #8bc63f 0%, #4ECDC4 50%, #8bc63f 100%);
    --gradient-dark: linear-gradient(135deg, #262626 0%, #171717 100%);
    
    /* Glass Morphism */
    --glass-light: rgba(255, 255, 255, 0.1);
    --glass-dark: rgba(0, 0, 0, 0.1);
    --glass-blur: blur(20px);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 50px 100px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 50px rgba(139, 198, 63, 0.3);
    
    /* Typography */
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', monospace;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Fluid Typography */
    --text-xs: clamp(0.75rem, 0.95vw, 0.875rem);
    --text-sm: clamp(0.875rem, 1.1vw, 1rem);
    --text-base: clamp(1rem, 1.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1.4vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.6vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 2vw, 2rem);
    --text-3xl: clamp(2rem, 3vw, 3rem);
    --text-4xl: clamp(3rem, 5vw, 5rem);
    
    /* Spacing System */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-32: 8rem;
    
    /* Fluid Spacing */
    --container-padding: clamp(1rem, 5vw, 5rem);
    --section-padding: clamp(3rem, 15vw, 8rem);
    
    /* Advanced Animations */
    --ease-1: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-2: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    --ease-3: cubic-bezier(0.645, 0.045, 0.355, 1.000);
    --ease-4: cubic-bezier(0.77, 0, 0.175, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--neutral-700);
    background: var(--neutral-000);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--primary);
    color: var(--neutral-000);
}

/* ====================
   CUSTOM SCROLLBARS
   ==================== */

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(139, 198, 63, 0.05);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 10px;
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    box-shadow: 0 2px 8px rgba(139, 198, 63, 0.3);
}

::-webkit-scrollbar-corner {
    background: rgba(139, 198, 63, 0.05);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(139, 198, 63, 0.05);
}

/* ====================
   REVOLUTIONARY NAVIGATION
   ==================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--neutral-200);
    transition: all 0.3s var(--ease-2);
}

/* Navbar Scrolled State */
.navbar.scrolled {
    padding: var(--space-2) 0;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--neutral-300);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.brand-symbol {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.brand-symbol::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease-2);
}

.brand-symbol:hover::before {
    transform: translateX(100%);
}

.symbol-inner {
    width: 20px;
    height: 20px;
    background: var(--neutral-000);
    border-radius: var(--radius-sm);
    transform: rotate(45deg);
}

.brand-text {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--neutral-800);
    letter-spacing: -0.02em;
}

/* Brand Logo Responsive Styling */
.brand-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s var(--ease-2);
    filter: brightness(1);
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Mobile Logo Adjustments */
@media (max-width: 768px) {
    .brand-logo {
        height: 35px;
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        height: 30px;
        max-width: 120px;
    }
}

/* Navbar Scrolled State Logo */
.navbar.scrolled .brand-logo {
    height: 35px;
}

@media (max-width: 768px) {
    .navbar.scrolled .brand-logo {
        height: 30px;
    }
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-8);
}

.nav-link {
    position: relative;
    color: var(--neutral-600);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
    display: inline-block;
    overflow: hidden;
    transition: color 0.3s var(--ease-2);
}

.nav-link .link-text {
    display: block;
    transition: transform 0.4s var(--ease-elastic), opacity 0.3s var(--ease-2);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
    font-size: var(--text-sm);
    padding: var(--space-2) 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s var(--ease-elastic), opacity 0.3s var(--ease-2);
}

.nav-link:hover .link-text {
    transform: translateY(-100%);
    opacity: 0;
}

.nav-link:hover::before {
    transform: translateY(0);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* ====================
   MODERN BUTTON SYSTEM
   ==================== */

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-2);
    white-space: nowrap;
}

.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 0.5s var(--ease-2);
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--neutral-000);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-ghost {
    background: transparent;
    color: var(--neutral-600);
    border: 1.5px solid var(--neutral-200);
}

.btn-ghost:hover {
    background: var(--neutral-050);
    border-color: var(--neutral-300);
    color: var(--neutral-800);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    transition: transform 0.3s var(--ease-elastic);
}

.btn-modern:hover .btn-arrow {
    transform: translateX(4px);
}

.play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: var(--neutral-000);
    border-radius: var(--radius-full);
    font-size: 10px;
}

/* ====================
   MOBILE NAVIGATION SYSTEM
   ==================== */

/* Hide desktop elements on mobile */
.desktop-only {
    display: block;
}

.mobile-menu-toggle {
    display: none;
    position: relative;
    z-index: 1001;
    cursor: pointer;
    padding: var(--space-2);
    background: transparent;
    border: none;
}

.hamburger {
    position: relative;
    width: 24px;
    height: 18px;
}

.hamburger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neutral-700);
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-2);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

/* Hamburger Animation */
.mobile-menu-toggle.active .hamburger span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) translateX(20px);
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--ease-2);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 90%;
    max-width: 400px;
    height: 100vh;
    background: var(--neutral-000);
    z-index: 1000;
    transition: right 0.4s var(--ease-3);
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) var(--space-6) var(--space-4);
    border-bottom: 1px solid var(--neutral-100);
}

.mobile-brand {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--neutral-050);
    color: var(--neutral-600);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s var(--ease-2);
}

.mobile-menu-close:hover {
    background: var(--neutral-100);
    color: var(--neutral-800);
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: var(--space-6);
}

.mobile-nav-menu {
    list-style: none;
    margin-bottom: var(--space-8);
}

.mobile-nav-item {
    margin-bottom: var(--space-2);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    color: var(--neutral-700);
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-2);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glass-light), transparent);
    transition: left 0.5s var(--ease-2);
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: var(--gradient-primary);
    color: var(--neutral-000);
    transform: translateX(8px);
}

.mobile-link-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--neutral-050);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-2);
}

.mobile-nav-link:hover .mobile-link-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-link-text {
    flex: 1;
    font-weight: 500;
    font-size: var(--text-base);
}

.mobile-link-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s var(--ease-2);
}

.mobile-nav-link:hover .mobile-link-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s var(--ease-2);
    border: none;
    font-size: var(--text-base);
}

.mobile-btn-ghost {
    background: var(--neutral-050);
    color: var(--neutral-700);
    border: 1.5px solid var(--neutral-200);
}

.mobile-btn-ghost:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-300);
}

.mobile-btn-primary {
    background: var(--gradient-primary);
    color: var(--neutral-000);
    box-shadow: var(--shadow-md);
}

.mobile-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-footer {
    padding-top: var(--space-6);
    border-top: 1px solid var(--neutral-100);
}

.mobile-contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--neutral-500);
    font-size: var(--text-sm);
}

.mobile-contact-item svg {
    color: var(--primary);
}

/* ====================
   REVOLUTIONARY HERO SECTION
   ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: var(--space-20) 0 var(--space-16);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(var(--neutral-200) 1px, transparent 1px),
        linear-gradient(90deg, var(--neutral-200) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
    mask: radial-gradient(ellipse at center, transparent 20%, black 70%);
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: var(--radius-full);
    filter: blur(1px);
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 198, 63, 0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(193, 224, 122, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-20);
    align-items: center;
}

/* ====================
   HERO TRUST SECTION - REDESIGNED
   ==================== */

.hero-trust-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    margin-bottom: var(--space-12);
    width: 100%;
    max-width: 800px;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    justify-content: flex-start;
    margin-bottom: var(--space-4);
}

.trust-indicator {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-6);
    background: var(--glass-light);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--neutral-700);
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease-2);
}

.trust-indicator:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: trust-pulse 2s infinite;
    position: relative;
}

.pulse-dot::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--primary);
    border-radius: var(--radius-full);
    opacity: 0.3;
    animation: trust-pulse-ring 2s infinite;
}

@keyframes trust-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes trust-pulse-ring {
    0% { transform: scale(0.8); opacity: 0.8; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* Trust Showcase */
.trust-showcase {
    position: relative;
    height: 280px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s var(--ease-2);
}

.trust-showcase:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.trust-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.trust-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-2);
}

.trust-showcase:hover .trust-image {
    transform: scale(1.05);
}

.trust-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(139, 198, 63, 0.8) 0%,
        rgba(78, 205, 196, 0.6) 50%,
        rgba(193, 224, 122, 0.8) 100%
    );
    opacity: 0.9;
}

.trust-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.trust-content {
    text-align: center;
    color: var(--neutral-000);
    max-width: 500px;
    padding: var(--space-6);
}

.trust-title {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-subtitle {
    font-size: var(--text-lg);
    font-weight: 400;
    margin-bottom: var(--space-6);
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
}

.mini-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--ease-2);
}

.mini-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.mini-number {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.mini-label {
    font-size: var(--text-xs);
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Trust Partners Marquee */
.trust-partners {
    margin-top: var(--space-4);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--neutral-050);
    border: 1px solid var(--neutral-200);
}

.partner-marquee {
    width: 100%;
    overflow: hidden;
    padding: var(--space-4) 0;
}

.partner-logos {
    display: flex;
    gap: var(--space-8);
    animation: marquee 20s linear infinite;
    width: max-content;
}

.partner-logo {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--neutral-500);
    white-space: nowrap;
    padding: var(--space-2) var(--space-4);
    background: var(--neutral-000);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease-2);
}

.partner-logo:hover {
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Duplicate logos for seamless loop */
.partner-logos::after {
    content: '';
    display: flex;
    gap: var(--space-8);
    margin-left: var(--space-8);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 700;
    line-height: 1.1;
    color: var(--neutral-800);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    overflow: hidden;
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary);
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: var(--neutral-600);
    margin-bottom: var(--space-8);
    max-width: 500px;
    line-height: 1.7;
    text-align: left;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.stat-block {
    text-align: left;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--neutral-500);
    font-weight: 500;
    margin-top: var(--space-1);
}

.hero-actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.dashboard-mock {
    background: var(--glass-light);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s var(--ease-2);
}

.dashboard-mock:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    border-bottom: 1px solid var(--neutral-200);
}

.header-dots {
    display: flex;
    gap: var(--space-2);
}

.header-dots span {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: var(--neutral-300);
}

.header-dots span:nth-child(1) { background: #8bc63f; }
.header-dots span:nth-child(2) { background: #c1e07a; }
.header-dots span:nth-child(3) { background: #6a9730; }

.header-title {
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--neutral-700);
}

.dashboard-content {
    flex: 1;
    overflow: hidden;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.dashboard-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.metric-card {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--neutral-000);
    border-radius: var(--radius-lg);
    border: 1px solid var(--neutral-200);
}

.metric-icon {
    font-size: var(--text-xl);
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--neutral-800);
}

.metric-change {
    font-size: var(--text-sm);
    color: var(--accent-dark);
    font-weight: 600;
}

.scroll-prompt {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ====================
   HERO SECTION
   ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(233, 236, 239, 0.9) 50%, 
        rgba(248, 249, 250, 0.95) 100%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--primary-color) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, var(--secondary-color) 2px, transparent 2px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--neutral-300);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    color: var(--secondary-color);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--neutral-800);
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary);
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--neutral-600);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--neutral-300);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.hero-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.card-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-100);
}

.card-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: 0.25rem;
}

.card-text p {
    color: var(--neutral-600);
    font-size: 0.9rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    width: 2px;
    height: 30px;
    background: var(--primary-gradient);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ====================
   SECTION CURVES
   ==================== */


.services .section-curve.bottom::before {
    background: var(--gradient-bg);
}

.products .section-curve.top::before {
    background: var(--gradient-bg);
}

/* ====================
   SECTION HEADERS
   ==================== */

.section-header {
    text-align: left;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-right: auto;
}

.section-badge {
    display: inline-flex;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--neutral-300);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ====================
   SERVICES SECTION
   ==================== */

.services {
    padding: var(--section-padding) 0;
    background: var(--neutral-000);
    position: relative;
}

/* Services Header */
.services-header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-8);
    align-items: center;
    margin-bottom: var(--space-12);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.header-content {
    max-width: 600px;
}

.services-badge {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--neutral-100);
    color: var(--neutral-600);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-full);
    border: 1px solid var(--neutral-200);
    margin-bottom: var(--space-4);
}

.services-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--neutral-800);
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.services-description {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: var(--neutral-600);
    max-width: 500px;
}

.header-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element-1,
.element-2,
.element-3 {
    position: absolute;
    border-radius: var(--radius-full);
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 198, 63, 0.2), rgba(193, 224, 122, 0.1));
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.element-2 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(139, 198, 63, 0.2), rgba(193, 224, 122, 0.1));
    bottom: 40px;
    left: 10px;
    animation-delay: 2s;
}

.element-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 198, 63, 0.2), rgba(193, 224, 122, 0.1));
    top: 60px;
    left: 40px;
    animation-delay: 4s;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Item */
.service-item {
    position: relative;
    background: var(--neutral-000);
    border-radius: var(--radius-xl);
    border: 1px solid var(--neutral-200);
    padding: var(--space-8);
    transition: all 0.3s var(--ease-2);
    overflow: hidden;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--neutral-400);
}

/* Alternating Service Card Backgrounds - Green Theme */
.service-item:nth-child(even) {
    background: var(--primary);
    color: var(--neutral-000);
    border-color: var(--primary);
}

.service-item:nth-child(even):hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(139, 198, 63, 0.3);
    border-color: rgba(139, 198, 63, 0.8);
}

.service-item:nth-child(even) .service-title {
    color: var(--neutral-000);
}

.service-item:nth-child(even) .service-description {
    color: rgba(255, 255, 255, 0.9);
}

.service-item:nth-child(even) .service-features li {
    color: var(--neutral-000);
}

.service-item:nth-child(even) .service-features li::before {
    background: var(--neutral-000);
}

.service-item:nth-child(even) .service-number {
    color: rgba(255, 255, 255, 0.15);
}

.service-item:nth-child(even) .service-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--neutral-000);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-item:nth-child(even) .service-icon svg {
    color: var(--neutral-000);
}

.service-item.featured:nth-child(even) {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary) 100%);
    border: 2px solid var(--neutral-400);
    transform: scale(1.02);
    position: relative;
}

.service-item.featured {
    background: linear-gradient(135deg, var(--neutral-050) 0%, var(--neutral-000) 100%);
    border: 2px solid var(--neutral-400);
    transform: scale(1.02);
    position: relative;
}

.service-item.featured:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--neutral-500);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: var(--space-6);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--neutral-700), var(--neutral-600));
    color: var(--neutral-000);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

/* Service Number */
.service-number {
    position: absolute;
    top: var(--space-6);
    right: var(--space-6);
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--neutral-200);
    line-height: 1;
    z-index: 1;
    transition: color 0.3s var(--ease-2);
}

/* Service Number Color Variations - Primary Theme */
.service-item[data-service="import"] .service-number,
.service-item[data-service="consulting"] .service-number,
.service-item[data-service="supply"] .service-number {
    color: rgba(139, 198, 63, 0.15);
}

.service-item[data-service="export"] .service-number{
    color: rgba(255, 255, 255, 0.15);
}
.service-item:hover .service-number {
    opacity: 0.8;
}

/* Service Icon */
.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--neutral-600), var(--neutral-500));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-000);
    margin-bottom: var(--space-6);
    transition: all 0.3s var(--ease-2);
    position: relative;
    z-index: 2;
}

/* Service Color Variations - Primary Theme */
.service-item[data-service="import"] .service-icon,
.service-item[data-service="export"] .service-icon,
.service-item[data-service="consulting"] .service-icon,
.service-item[data-service="supply"] .service-icon {
    background: var(--gradient-primary);
}

.service-item[data-service="import"]:hover,
.service-item[data-service="export"]:hover,
.service-item[data-service="consulting"]:hover,
.service-item[data-service="supply"]:hover {
    border-color: rgba(139, 198, 63, 0.318);
}

.service-item[data-service="import"] .service-icon::after,
.service-item[data-service="export"] .service-icon::after,
.service-item[data-service="consulting"] .service-icon::after,
.service-item[data-service="supply"] .service-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, rgba(139, 198, 63, 0.1), transparent);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s var(--ease-2);
}

.service-item[data-service="import"]:hover .service-icon::after,
.service-item[data-service="export"]:hover .service-icon::after,
.service-item[data-service="consulting"]:hover .service-icon::after,
.service-item[data-service="supply"]:hover .service-icon::after {
    opacity: 1;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

/* Service Content */
.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: var(--space-3);
    line-height: 1.2;
}

.service-description {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--neutral-600);
    margin-bottom: var(--space-6);
}

/* Service Features */
.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-6) 0;
}

.service-features li {
    position: relative;
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    font-size: var(--text-sm);
    color: var(--neutral-700);
    border-bottom: 1px solid var(--neutral-100);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: var(--space-2);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--neutral-600), var(--neutral-500));
    color: var(--neutral-000);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

/* Service Feature Color Variations - Primary Theme */
.service-item[data-service="import"] .service-features li::before,
.service-item[data-service="export"] .service-features li::before,
.service-item[data-service="consulting"] .service-features li::before,
.service-item[data-service="supply"] .service-features li::before {
    background: var(--gradient-primary);
}

/* Service Stats */
.service-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.stat {
    text-align: center;
    padding: var(--space-3);
    background: var(--neutral-050);
    border-radius: var(--radius-md);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s var(--ease-2);
}

.stat:hover {
    background: var(--neutral-100);
    transform: translateY(-2px);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--neutral-700);
    line-height: 1;
    margin-bottom: var(--space-1);
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--neutral-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Service CTA */
.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: var(--space-4) var(--space-5);
    background: transparent;
    border: 2px solid var(--neutral-300);
    color: var(--neutral-700);
    font-weight: 600;
    font-size: var(--text-sm);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s var(--ease-2);
    position: relative;
    overflow: hidden;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--neutral-600), var(--neutral-500));
    transition: left 0.3s var(--ease-2);
    z-index: 1;
}

/* Service CTA Color Variations - Primary Theme */
.service-item[data-service="import"] .service-cta::before,
.service-item[data-service="export"] .service-cta::before,
.service-item[data-service="consulting"] .service-cta::before,
.service-item[data-service="supply"] .service-cta::before {
    background: var(--gradient-primary);
}

.service-item[data-service="import"] .service-cta:hover,
.service-item[data-service="export"] .service-cta:hover,
.service-item[data-service="consulting"] .service-cta:hover,
.service-item[data-service="supply"] .service-cta:hover {
    border-color: var(--primary);
}

.service-cta:hover::before {
    left: 0;
}

.service-cta > * {
    position: relative;
    z-index: 2;
}

.service-cta:hover {
    color: var(--neutral-000);
    border-color: var(--neutral-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.featured-cta {
    background: linear-gradient(135deg, var(--neutral-700), var(--neutral-600));
    color: var(--neutral-000);
    border-color: transparent;
}

.featured-cta::before {
    background: linear-gradient(135deg, var(--neutral-800), var(--neutral-700));
}

.featured-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

/* Animations */
@keyframes float {
    0%, 100% { 
        transform: translateY(0px);
    }
    50% { 
        transform: translateY(-20px);
    }
}

/* ====================
   ABOUT SECTION
   ==================== */

.about {
    padding: var(--section-padding) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: var(--primary);
    background-clip: text;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--neutral-600);
    font-weight: 500;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--neutral-700);
    font-weight: 500;
}

.value-item svg {
    color: var(--accent-color);
}

.about-visual {
    position: relative;
    height: 600px;
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s var(--ease-2);
}

.about-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-2);
}

.about-image:hover .main-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 2;
}

/* Floating Statistics */
.image-stats {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s var(--ease-2);
    animation: float 3s ease-in-out infinite;
}

.floating-stat:nth-child(1) {
    top: 20%;
    right: -10px;
    animation-delay: 0s;
}

.floating-stat:nth-child(2) {
    top: 50%;
    left: -15px;
    animation-delay: 1s;
}

.floating-stat:nth-child(3) {
    bottom: 20%;
    right: 10px;
    animation-delay: 2s;
}

.stat-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-md);
    color: var(--neutral-000);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--neutral-800);
    line-height: 1;
}

.stat-desc {
    font-size: var(--text-xs);
    color: var(--neutral-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Decorative Elements */
.image-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.decoration-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--neutral-400);
    border-radius: var(--radius-full);
    opacity: 0.6;
    animation: pulse-dot 2s ease-in-out infinite;
}

.dot-1 {
    top: 15%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 0.7s;
}

.dot-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 1.4s;
}

.decoration-line {
    position: absolute;
    background: var(--neutral-300);
    opacity: 0.4;
    animation: line-grow 3s ease-in-out infinite;
}

.line-1 {
    top: 30%;
    left: 10%;
    width: 60px;
    height: 2px;
    animation-delay: 0.5s;
}

.line-2 {
    bottom: 40%;
    right: 15%;
    width: 2px;
    height: 50px;
    animation-delay: 1.5s;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-dot {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: scale(1.2); 
        opacity: 0.8; 
    }
}

@keyframes line-grow {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.4; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.7; 
    }
}

/* ====================
   PRODUCTS SECTION
   ==================== */

.products {
    position: relative;
    background: var(--gradient-bg);
    padding: var(--section-padding) 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--neutral-100);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

/* Alternating Product Card Backgrounds */
.product-card:nth-child(even) {
    background: var(--primary);
    color: var(--neutral-000);
}

.product-card:nth-child(even) .product-content h3 {
    color: var(--neutral-000);
}

.product-card:nth-child(even) .product-content p {
    color: var(--neutral-100);
}

.product-card:nth-child(even) .product-tags span {
    background: rgba(255, 255, 255, 0.2);
    color: var(--neutral-000);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.product-card:nth-child(even):hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(139, 198, 63, 0.3);
}

.product-image {
    position: relative;
    height: 240px;
    background: var(--gradient-bg);
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-2);
}

.product-image:hover img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.product-image:hover .product-overlay {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.5rem;
}

.product-content p {
    color: var(--neutral-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-tags span {
    padding: 4px 12px;
    background: var(--neutral-200);
    color: var(--neutral-700);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 50px;
}

/* Product Button - Modern Minimal Style */
.product-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-4);
    background: transparent;
    border: none;
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: all 0.3s var(--ease-2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s var(--ease-2);
    transform: translateX(-50%);
}

.product-btn:hover::before {
    width: 100%;
}

.product-btn:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.product-btn .btn-icon {
    transition: transform 0.3s var(--ease-2);
    opacity: 0.8;
}

.product-btn:hover .btn-icon {
    transform: translateX(4px);
    opacity: 1;
}

/* ====================
   CTA SECTION
   ==================== */

.cta {
    padding: calc(var(--section-padding) * 0.5) 0;
    background: var(--neutral-000);
    border-top: 1px solid var(--neutral-200);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content {
    margin-bottom: var(--space-8);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--neutral-800);
    margin-bottom: var(--space-4);
    line-height: 1.2;
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: var(--neutral-600);
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    margin: var(--space-8) 0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
    color: var(--neutral-700);
    transition: all 0.3s var(--ease-2);
}

.feature-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.feature-item:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

.cta-actions {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    align-items: center;
}

/* CTA Buttons */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: var(--gradient-primary);
    color: var(--neutral-000);
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: all 0.3s var(--ease-2);
    box-shadow: 0 4px 12px rgba(139, 198, 63, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 198, 63, 0.3);
}

.cta-primary svg {
    transition: transform 0.3s var(--ease-2);
}

.cta-primary:hover svg {
    transform: translateX(2px);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: var(--space-4) var(--space-6);
    background: transparent;
    color: var(--neutral-700);
    border: 2px solid var(--neutral-300);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: var(--text-base);
    cursor: pointer;
    transition: all 0.3s var(--ease-2);
}

.cta-secondary:hover {
    background: var(--neutral-700);
    color: var(--neutral-000);
    border-color: var(--neutral-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cta-features {
        flex-direction: column;
        gap: var(--space-4);
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Services Mobile Optimization */
    .services-header {
        text-align: center;
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .header-visual {
        display: none; /* Hide floating elements on mobile */
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        padding: 0 var(--space-4);
    }
    
    .service-item {
        padding: var(--space-5);
        margin: 0;
        transform: none !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .service-item:hover {
        transform: none !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }
    
    .service-number {
        font-size: var(--text-lg);
        top: var(--space-4);
        right: var(--space-4);
    }
    
    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--space-3);
    }
    
    .service-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .service-title {
        font-size: var(--text-xl);
        margin-bottom: var(--space-2);
    }
    
    .service-description {
        font-size: var(--text-sm);
        margin-bottom: var(--space-4);
        line-height: 1.6;
    }
    
    .service-features {
        margin: 0;
        padding-left: var(--space-4);
    }
    
    .service-features li {
        font-size: var(--text-sm);
        margin-bottom: var(--space-1);
    }
}

/* ====================
   FOOTER
   ==================== */

.footer {
    position: relative;
    background: var(--primary);
    color: var(--neutral-800);
    padding-top: calc(var(--section-padding) + 60px);
    padding-bottom: 2rem;
}

.footer-curve {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--neutral-000);
    clip-path: ellipse(100% 100% at 50% 100%);
    rotate: calc(180deg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.footer-brand h3 {
    color: var(--neutral-900);
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-brand .brand-icon {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-group h4 {
    color: var(--neutral-800);
    font-weight: 600;
    margin-bottom: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group li {
    margin-bottom: 0.5rem;
}

.link-group a {
    color: var(--neutral-800);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-contact h4 {
    color: var(--neutral-800);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-item svg {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--neutral-900);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--neutral-900);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-legal a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--neutral-700);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition-smooth);
}

.footer-social a:hover {
    background: var(--neutral-800);
    color: var(--neutral-100);
    transform: translateY(-2px);
}

/* ====================
   RESPONSIVE DESIGN
   ==================== */

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Products Mobile */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Services Mobile */
    .services-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-6);
        margin-bottom: var(--space-8);
    }
    
    .header-visual {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .service-item {
        padding: var(--space-6);
    }
    
    .service-item.featured {
        transform: none;
    }
    
    .service-item.featured:hover {
        transform: translateY(-8px);
    }
    
    .service-number {
        font-size: 2rem;
        top: var(--space-4);
        right: var(--space-4);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
    
    /* Services Showcase Tablet */
    .services-showcase {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .modern-service-card {
        padding: var(--space-6);
    }
    
    .featured-service {
        transform: none;
        order: -1;
    }
    
    .featured-service:hover {
        transform: translateY(-8px) scale(1.02);
    }
    
    .service-header {
        gap: var(--space-3);
        margin-bottom: var(--space-4);
    }
    
    .icon-background,
    .service-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .icon-ring {
        width: 76px;
        height: 76px;
        top: -8px;
        left: -8px;
    }
    
    .service-title {
        font-size: var(--text-lg);
    }
    
    .service-stats {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2);
    }
    
    .stat-mini {
        padding: var(--space-2);
    }
    
    .service-btn {
        padding: var(--space-3);
        font-size: var(--text-sm);
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    /* About Section Mobile */
    .about-visual {
        height: 400px;
        margin-top: var(--space-6);
    }
    
    .floating-stat {
        padding: var(--space-2) var(--space-3);
        gap: var(--space-2);
    }
    
    .floating-stat:nth-child(1) {
        top: 15%;
        right: -5px;
    }
    
    .floating-stat:nth-child(2) {
        top: 45%;
        left: -8px;
    }
    
    .floating-stat:nth-child(3) {
        bottom: 15%;
        right: 5px;
    }
    
    .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    
    .stat-num {
        font-size: var(--text-base);
    }
    
    .stat-desc {
        font-size: 10px;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
    
    /* Services Mobile Complete Redesign */
    .services {
        padding: 1.5rem 0 !important;
    }
    
    .services .container {
        padding: 0 1rem !important;
        max-width: 100% !important;
    }
    
    .services-header {
        display: block !important;
        text-align: center !important;
        margin-bottom: 1.5rem !important;
        grid-template-columns: none !important;
        gap: 0 !important;
    }
    
    .header-visual {
        display: none !important;
    }
    
    .services-badge {
        font-size: 0.75rem !important;
        padding: 0.375rem 0.75rem !important;
        margin-bottom: 0.75rem !important;
        background: #569418 !important;
        color: white !important;
        border: none !important;
    }
    
    .services-title {
        font-size: 1.75rem !important;
        margin-bottom: 0.5rem !important;
        line-height: 1.3 !important;
        color: #1f2937 !important;
    }
    
    .services-description {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
        color: #6b7280 !important;
        max-width: 90% !important;
        margin: 0 auto !important;
    }
    
    .services-grid {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        max-width: none !important;
        margin: 0 !important;
    }
    
    .service-item {
        display: block !important;
        width: 100% !important;
        padding: 1.5rem 1rem !important;
        margin: 0 0 1rem 0 !important;
        background: white !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 0.75rem !important;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .service-item:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
        border-color: #8bc63f !important;
    }
    
    .service-item.featured {
        border-color: #8bc63f !important;
        background: linear-gradient(135deg, #f8fdf2 0%, white 100%) !important;
    }
    
    .service-number {
        position: absolute !important;
        top: 1rem !important;
        right: 1rem !important;
        width: 32px !important;
        height: 32px !important;
        background: #8bc63f !important;
        color: white !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.875rem !important;
        font-weight: 600 !important;
        line-height: 1 !important;
    }
    
    .service-icon {
        width: 48px !important;
        height: 48px !important;
        background: #f3f4f6 !important;
        border-radius: 0.75rem !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 1rem !important;
    }
    
    .service-icon svg {
        width: 24px !important;
        height: 24px !important;
        color: #8bc63f !important;
    }
    
    .service-content {
        padding-right: 2.5rem !important;
    }
    
    .service-title {
        font-size: 1.25rem !important;
        font-weight: 600 !important;
        color: #1f2937 !important;
        margin-bottom: 0.75rem !important;
        line-height: 1.4 !important;
    }
    
    .service-description {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        color: #6b7280 !important;
        margin-bottom: 1rem !important;
    }
    
    .service-features {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }
    
    .service-features li {
        background: #f9fafb !important;
        color: #374151 !important;
        padding: 0.375rem 0.75rem !important;
        border-radius: 1rem !important;
        font-size: 0.8125rem !important;
        font-weight: 500 !important;
        border: 1px solid #e5e7eb !important;
        margin: 0 !important;
        line-height: 1.2 !important;
    }
    
    .service-features li:before {
        display: none !important;
    }
    
    .services-showcase {
        gap: var(--space-4);
    }
    
    .modern-service-card {
        padding: var(--space-4);
    }
    
    .service-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: var(--space-3);
    }
    
    .service-meta {
        text-align: center;
    }
    
    .icon-background,
    .service-icon-modern {
        width: 50px;
        height: 50px;
    }
    
    .icon-ring {
        width: 66px;
        height: 66px;
    }
    
    .service-title {
        font-size: var(--text-base);
    }

    
    .highlight-item {
        justify-content: center;
    }
    
    /* About Section Extra Small Mobile */
    .about-visual {
        height: 300px;
    }
    
    .floating-stat {
        padding: var(--space-1) var(--space-2);
        gap: var(--space-1);
        border-radius: var(--radius-md);
    }
    
    .floating-stat:nth-child(2) {
        left: -12px;
    }
    
    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .stat-num {
        font-size: var(--text-sm);
    }
    
    .stat-desc {
        font-size: 9px;
    }
    
    .decoration-dot {
        width: 8px;
        height: 8px;
    }
    
    .line-1 {
        width: 40px;
    }
    
    .line-2 {
        height: 30px;
    }
    
    /* Services Extra Small Mobile */
    .services-title {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: var(--text-base);
    }
    
    .service-item {
        padding: var(--space-5);
    }
    
    .service-icon {
        width: 56px;
        height: 56px;
    }
    
    .service-title {
        font-size: var(--text-xl);
    }
    
    .service-stats {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }
    
    .service-cta {
        padding: var(--space-3) var(--space-4);
        font-size: var(--text-xs);
    }
}

/* ====================
   ANIMATIONS
   ==================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Scroll animations will be handled by JavaScript */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ====================
   UTILITY CLASSES
   ==================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ====================
   RESPONSIVE DESIGN
   ==================== */

@media (max-width: 768px) {
    /* Desktop Navigation Hidden */
    .desktop-nav {
        display: none;
    }
    
    .desktop-only {
        display: none;
    }
    
    /* Mobile Navigation Visible */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero Section Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-12);
        text-align: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-2);
        text-align: center;
    }
    
    .stat-block {
        text-align: center;
    }
    
    .stat-number {
        font-size: var(--text-xl);
    }
    
    .stat-label {
        font-size: var(--text-xs);
        line-height: 1.3;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }
    
    .dashboard-mock {
        transform: none;
        max-width: 400px;
        margin: 0 auto;
    }
    
    /* Mobile Menu Responsive */
    .mobile-menu {
        width: 100%;
        max-width: none;
    }
    
    .mobile-nav-link {
        padding: var(--space-3);
        gap: var(--space-3);
    }
    
    .mobile-link-icon {
        width: 36px;
        height: 36px;
    }
    
    .mobile-btn {
        padding: var(--space-3);
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    :root {
        --text-4xl: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-title {
        text-align: left;
    }
    
    .hero-badge {
        margin: 0 auto var(--space-6);
    }
    
    /* Extra small mobile adjustments */
    .mobile-menu {
        width: 100vw;
        right: -100vw;
    }
    
    .mobile-menu-header {
        padding: var(--space-4);
    }
    
    .mobile-menu-content {
        padding: var(--space-4);
    }
    
    .mobile-nav-link {
        padding: var(--space-2) var(--space-3);
        gap: var(--space-2);
    }
    
    .mobile-link-icon {
        width: 32px;
        height: 32px;
    }
    
    .mobile-link-text {
        font-size: var(--text-sm);
    }
    
    .mobile-contact-item {
        font-size: var(--text-xs);
    }
}

/* ====================
   SCROLL ANIMATIONS
   ==================== */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s var(--ease-2);
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

/* ====================
   UTILITY CLASSES
   ==================== */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ====================
   WHATSAPP WIDGET
   ==================== */

.whatsapp-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.whatsapp-button {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--ease-2);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-button svg {
    color: white;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s var(--ease-2);
}

.whatsapp-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.whatsapp-header {
    background: #25D366;
    color: white;
    padding: 1rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.whatsapp-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-info h4 {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 600;
}

.whatsapp-info span {
    font-size: 0.875rem;
    opacity: 0.9;
}

.whatsapp-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.whatsapp-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.whatsapp-body {
    padding: 1rem;
    background: #f0f2f5;
}

.whatsapp-message {
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px 8px 8px 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
}

.whatsapp-message::before {
    content: '';
    position: absolute;
    left: -6px;
    bottom: 8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 0;
    border-color: transparent white transparent transparent;
}

.whatsapp-message p {
    margin: 0 0 0.5rem 0;
    color: #374151;
    line-height: 1.4;
}

.message-time {
    font-size: 0.75rem;
    color: #6b7280;
}

.whatsapp-footer {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
}

.whatsapp-chat-btn {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background-color 0.2s;
}

.whatsapp-chat-btn:hover {
    background: #1da851;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 1.5rem;
        right: 1rem;
    }
    
    .whatsapp-button {
        width: 56px;
        height: 56px;
    }
    
    .whatsapp-popup {
        width: 280px;
        bottom: 70px;
    }
    
    .whatsapp-header {
        padding: 0.875rem;
    }
    
    .whatsapp-body,
    .whatsapp-footer {
        padding: 0.875rem;
    }
}