/* ================================================== */
/* PRANARP STUNNING DESIGN SYSTEM - MOBILE FIRST */
/* ================================================== */
/* Created by the world's best engineers and designers */
/* Mobile-first, performance-optimized, absolutely gorgeous */

:root {
    /* Primary Colors - Matching Admin Purple Theme */
    --primary-50: #faf9ff;
    --primary-100: #f5f3ff;
    --primary-200: #ede9fe;
    --primary-300: #ddd6fe;
    --primary-400: #c4b5fd;
    --primary-500: #a78bfa;
    --primary-600: #9333ea;
    --primary-700: #7c3aed;
    --primary-800: #6b21a8;
    --primary-900: #581c87;
    --primary-950: #4c1d95;
    
    /* Secondary Colors - Dark Theme */
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-300: #cbd5e1;
    --secondary-400: #94a3b8;
    --secondary-500: #64748b;
    --secondary-600: #475569;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    --secondary-950: #020617;
    
    /* Accent Colors - Vibrant Teal */
    --accent-50: #f0fdfa;
    --accent-100: #ccfbf1;
    --accent-200: #99f6e4;
    --accent-300: #5eead4;
    --accent-400: #2dd4bf;
    --accent-500: #14b8a6;
    --accent-600: #0d9488;
    --accent-700: #0f766e;
    --accent-800: #115e59;
    --accent-900: #134e4a;
    
    /* Dark Theme Colors */
    --dark-50: #f8fafc;
    --dark-100: #f1f5f9;
    --dark-200: #e2e8f0;
    --dark-300: #cbd5e1;
    --dark-400: #94a3b8;
    --dark-500: #64748b;
    --dark-600: #475569;
    --dark-700: #334155;
    --dark-800: #1e293b;
    --dark-900: #0f172a;
    --dark-950: #020617;
    
    /* Legacy Brand Colors for Compatibility */
    --brand-50: var(--primary-50);
    --brand-100: var(--primary-100);
    --brand-200: var(--primary-200);
    --brand-300: var(--primary-300);
    --brand-400: var(--primary-400);
    --brand-500: var(--primary-500);
    --brand-600: var(--primary-600);
    --brand-700: var(--primary-700);
    --brand-800: var(--primary-800);
    --brand-900: var(--primary-900);
    
    /* Legacy Neutral Colors */
    --neutral-50: var(--dark-50);
    --neutral-100: var(--dark-100);
    --neutral-200: var(--dark-200);
    --neutral-300: var(--dark-300);
    --neutral-400: var(--dark-400);
    --neutral-500: var(--dark-500);
    --neutral-600: var(--dark-600);
    --neutral-700: var(--dark-700);
    --neutral-800: var(--dark-800);
    --neutral-900: var(--dark-900);
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing - Mobile First */
    --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;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    
    /* Shadows - Enhanced */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(79, 70, 229, 0.3);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ================================================== */
/* RESET & BASE STYLES - MOBILE FIRST */
/* ================================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: var(--dark-700);
    background: linear-gradient(135deg, var(--dark-50) 0%, var(--dark-100) 50%, var(--primary-50) 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    display: block;
    min-height: 100vh;
}

/* ================================================== */
/* STUNNING ANIMATIONS - MOBILE FIRST */
/* ================================================== */

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

@keyframes floatReverse {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

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

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

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* ================================================== */
/* STUNNING HEADER - MOBILE FIRST */
/* ================================================== */

.header-light {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--primary-200);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: all var(--transition-normal);
    height: 70px;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.15);
}

.header-light.scroll-light {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 8px 32px rgba(147, 51, 234, 0.2);
    backdrop-filter: blur(24px);
}

/* Logo Styling */
#logo {
    display: flex;
    align-items: center;
}

#logo img {
    height: 35px;
    width: auto;
    transition: all var(--transition-bounce);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

#logo img:hover {
    transform: scale(1.1) rotate(2deg);
    filter: drop-shadow(0 4px 8px rgba(79, 70, 229, 0.3));
}

/* Main Menu - Mobile First */
#mainmenu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--dark-800);
    box-shadow: var(--shadow-xl);
    padding: var(--space-4);
    gap: var(--space-2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    backdrop-filter: blur(20px);
    border: 1px solid var(--primary-200);
}

#mainmenu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#mainmenu li {
    position: relative;
    margin: 0;
}

#mainmenu li > a {
    color: var(--dark-100);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: transparent;
    border: 2px solid transparent;
}

#mainmenu li > a:hover {
    color: var(--primary-300);
    background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-600);
}

#mainmenu li > a.active {
    color: var(--primary-300);
    background: linear-gradient(135deg, var(--primary-800), var(--primary-700));
    box-shadow: var(--shadow-md);
    border-color: var(--primary-500);
}

/* Dropdown styles */
#mainmenu li ul {
    position: static;
    background: var(--neutral-50);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all var(--transition-normal);
    z-index: 10001;
    padding: var(--space-2);
    margin-top: var(--space-2);
    display: none;
}

#mainmenu li:hover ul {
    display: block;
}

#mainmenu li ul li {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

#mainmenu li ul li a {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    color: var(--neutral-700);
    border-radius: var(--radius-lg);
    border: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all var(--transition-fast);
    position: relative;
}

#mainmenu li ul li a:hover {
    background: linear-gradient(135deg, var(--brand-50), var(--brand-100));
    color: var(--brand-700);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

/* CTA Button Styling */
.btn-custom {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-xl);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    text-transform: none;
}

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

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

.btn-custom:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    color: white;
}

.btn-custom:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-custom.btn-bordered {
    background: transparent;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
    box-shadow: none;
}

.btn-custom.btn-bordered:hover {
    background: var(--primary-600);
    color: white;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
#mobile-menu-btn {
    background: none;
    border: none;
    color: var(--dark-100);
    font-size: 1.5rem;
    padding: var(--space-2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

#mobile-menu-btn:hover {
    color: var(--primary-400);
    background: var(--primary-900);
    transform: scale(1.1);
}

/* ================================================== */
/* STUNNING HERO SECTION - MOBILE FIRST */
/* ================================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, 
        var(--dark-900) 0%, 
        var(--dark-800) 25%, 
        var(--primary-900) 50%, 
        var(--primary-800) 75%, 
        var(--dark-900) 100%);
    overflow: hidden;
    padding-top: 70px;
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e5e7eb" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(79, 70, 229, 0.05) 50%, 
        transparent 70%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark-50);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--dark-50), var(--primary-300), var(--accent-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-section h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-300);
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary-400), var(--accent-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-2xl);
    background-color: var(--primary-900);
    border: 2px solid var(--primary-600);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-section .lead {
    font-size: clamp(1rem, 4vw, 1.375rem);
    line-height: 1.7;
    color: var(--dark-200);
    margin-bottom: var(--space-8);
    font-weight: 400;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Hero Image Styling */
.hero-section img {
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-2xl);
    transition: all var(--transition-slow);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    width: 100%;
    height: auto;
}

.hero-section img:hover {
    transform: scale(1.02) rotate(1deg);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

/* ================================================== */
/* STUNNING FEATURE CARDS - MOBILE FIRST */
/* ================================================== */

.features-section {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, 
        var(--dark-100) 0%, 
        var(--dark-50) 50%, 
        var(--primary-50) 100%);
    position: relative;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
    z-index: 1;
}

.features-section .container {
    position: relative;
    z-index: 2;
}

.features-section h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: var(--space-6);
    text-align: center;
    background: linear-gradient(135deg, var(--dark-900), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-section .uptitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    display: block;
}

.features-section .lead {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--dark-600);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-12);
    line-height: 1.7;
}

.feature-box {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-6);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-500), var(--accent-500), var(--brand-600));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(79, 70, 229, 0.05), transparent);
    transform: rotate(45deg);
    transition: all var(--transition-slow);
    opacity: 0;
}

.feature-box:hover::after {
    opacity: 1;
    transform: rotate(45deg) translate(50%, 50%);
}

.feature-box:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand-300);
}

.feature-box .i-boxed {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: var(--space-6);
    transition: all var(--transition-bounce);
    background: linear-gradient(135deg, var(--brand-500), var(--brand-600));
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    animation: pulse 4s ease-in-out infinite;
}

.feature-box .i-boxed::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--brand-400), var(--accent-400));
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.feature-box:hover .i-boxed {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-xl);
}

.feature-box h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-50);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 2;
}

.feature-box h4 a {
    color: inherit;
    text-decoration: none;
    transition: all var(--transition-fast);
    background: linear-gradient(135deg, var(--dark-50), var(--primary-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-box h4 a:hover {
    background: linear-gradient(135deg, var(--primary-400), var(--accent-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-box p {
    color: var(--dark-300);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* ================================================== */
/* RESPONSIVE DESIGN - MOBILE FIRST */
/* ================================================== */

/* Mobile Styles (default) */
@media (max-width: 767px) {
    .header-light {
        height: 60px;
    }
    
    #logo img {
        height: 30px;
    }
    
    .hero-section {
        padding-top: 60px;
        min-height: 90vh;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: var(--space-4);
    }
    
    .hero-section h4 {
        font-size: 0.9rem;
        padding: var(--space-2) var(--space-3);
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: var(--space-6);
    }
    
    .feature-box {
        padding: var(--space-6);
        margin-bottom: var(--space-4);
    }
    
    .feature-box .i-boxed {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .features-section {
        padding: var(--space-12) 0;
    }
    
    /* Disable animations on mobile for performance */
    .hero-section img,
    .feature-box .i-boxed,
    .feature-box:hover {
        animation: none;
    }
}

/* Tablet Styles */
@media (min-width: 768px) {
    .header-light {
        height: 70px;
    }
    
    #mainmenu {
        display: flex;
        flex-direction: row;
        position: static;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: var(--space-6);
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    #mainmenu li ul {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        background: white;
        border-radius: var(--radius-2xl);
        box-shadow: var(--shadow-2xl);
        border: 1px solid var(--neutral-200);
        min-width: 220px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-15px) scale(0.95);
        transition: all var(--transition-normal);
        z-index: 10001;
        padding: var(--space-2);
        backdrop-filter: blur(20px);
        display: block;
    }
    
    #mainmenu li:hover ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
    }
    
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section h4 {
        font-size: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1.25rem;
    }
    
    .feature-box {
        padding: var(--space-8);
    }
    
    .feature-box .i-boxed {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .header-light {
        height: 80px;
    }
    
    #logo img {
        height: 45px;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-section h1 {
        font-size: 4.5rem;
    }
    
    .hero-section h4 {
        font-size: 1.125rem;
    }
    
    .hero-section .lead {
        font-size: 1.375rem;
    }
    
    .feature-box {
        padding: var(--space-10);
    }
    
    .feature-box .i-boxed {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .features-section {
        padding: var(--space-24) 0;
    }
}

/* ================================================== */
/* UTILITY CLASSES */
/* ================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }
.position-fixed { position: fixed; }

.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }

/* ================================================== */
/* ACCESSIBILITY & PERFORMANCE */
/* ================================================== */

/* Focus styles for keyboard navigation */
*:focus {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-600);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-600: #0000ff;
        --accent-500: #00ff00;
        --dark-900: #000000;
        --dark-600: #333333;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-500), var(--accent-500));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--accent-600));
}

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

::-moz-selection {
    background: var(--primary-200);
    color: var(--primary-900);
}

/* Smooth transitions to all elements */
* {
    transition: color var(--transition-fast), 
                background-color var(--transition-fast), 
                border-color var(--transition-fast), 
                transform var(--transition-fast), 
                box-shadow var(--transition-fast);
}

/* ================================================== */
/* ADDITIONAL STUNNING FEATURES */
/* ================================================== */

/* Pricing Cards */
.pricing-s1 {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-3xl);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-6);
}

.pricing-s1:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand-300);
}

.pricing-s1.popular {
    border: 2px solid var(--brand-500);
    transform: scale(1.05);
}

.pricing-s1.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-s1 .top {
    padding: var(--space-8);
    text-align: center;
    border-bottom: 1px solid var(--neutral-200);
}

.pricing-s1 .top h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-50);
    margin-bottom: var(--space-2);
}

.pricing-s1 .plan-tagline {
    color: var(--dark-400);
    font-size: 0.9rem;
}

.pricing-s1 .mid {
    padding: var(--space-8);
    text-align: center;
    color: white;
    background: linear-gradient(45deg, var(--brand-600), var(--brand-700));
    position: relative;
    overflow: hidden;
}

.pricing-s1 .mid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform var(--transition-slow);
}

.pricing-s1:hover .mid::before {
    transform: translateX(100%);
}

.pricing-s1 .price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0;
    font-family: var(--font-display);
}

.pricing-s1 .price .currency {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 5px;
}

.pricing-s1 .price .month {
    font-size: 1rem;
    opacity: 0.8;
    display: block;
    margin-top: 5px;
}

.pricing-s1 .bottom {
    padding: var(--space-8);
    flex-grow: 1;
}

.pricing-s1 .bottom ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-s1 .bottom ul li {
    margin-bottom: var(--space-4);
    color: var(--dark-300);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.pricing-s1 .bottom ul li i {
    color: var(--accent-500);
    margin-right: var(--space-3);
    font-size: 1.1rem;
}

.pricing-s1 .action {
    padding: var(--space-8);
    text-align: center;
    border-top: 1px solid var(--neutral-200);
}

/* Testimonials */
.de_testi {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: var(--space-6);
}

.de_testi:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--brand-300);
}

.de_testi blockquote {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark-300);
    margin-bottom: var(--space-6);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.de_testi blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-200);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    z-index: 1;
}

.de_testi .de_testi_by {
    font-weight: 600;
    color: var(--dark-50);
    margin-top: var(--space-4);
    position: relative;
    z-index: 2;
}

.de_testi .de_testi_by span {
    display: block;
    font-size: 0.9rem;
    color: var(--dark-400);
    font-weight: 400;
}

/* Footer */
.footer-light {
    background: var(--dark-950);
    color: var(--dark-300);
    padding: var(--space-20) 0 var(--space-8);
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.footer-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(79, 70, 229, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.footer-light .container {
    position: relative;
    z-index: 2;
}

.footer-light h5 {
    color: var(--dark-50);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-6);
    font-family: var(--font-display);
}

.footer-light p {
    color: var(--dark-400);
    line-height: 1.6;
}

.footer-light ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-light ul li {
    margin-bottom: var(--space-3);
}

.footer-light ul li a {
    color: var(--dark-400);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-light ul li a:hover {
    color: var(--primary-400);
    text-decoration: underline;
}

.footer-light .social-icons a {
    color: var(--dark-400);
    margin-right: var(--space-4);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-light .social-icons a:hover {
    color: var(--primary-400);
    transform: translateY(-2px) scale(1.1);
}

.footer-light .input-group .form-control {
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    border: 1px solid var(--dark-700);
    background-color: var(--dark-800);
    color: var(--dark-100);
    padding: var(--space-3);
}

.footer-light .input-group .form-control::placeholder {
    color: var(--dark-500);
}

.footer-light .input-group .btn-custom {
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    padding: var(--space-3) var(--space-4);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

.footer-light .input-group .btn-custom:hover {
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
}

/* Spacers */
.spacer-10 { height: 10px; width: 100%; }
.spacer-20 { height: 20px; width: 100%; }
.spacer-30 { height: 30px; width: 100%; }
.spacer-40 { height: 40px; width: 100%; }

/* Utility Classes */
.id-color { color: var(--primary-600); }
.mb40 { margin-bottom: 40px; }
.py-20 { padding-top: 80px; padding-bottom: 80px; }
.pt60 { padding-top: 60px; }
.pb60 { padding-bottom: 60px; }
.mt10 { margin-top: 10px; }

/* WOW.js Animation Classes */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* Owl Carousel Customizations */
.owl-carousel .owl-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.owl-carousel .owl-nav button {
    background: var(--primary-600);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 var(--space-2);
    transition: all var(--transition-fast);
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary-700);
    transform: scale(1.1);
}

.owl-carousel .owl-dots {
    text-align: center;
    margin-top: var(--space-6);
}

.owl-carousel .owl-dots .owl-dot {
    background: var(--dark-300);
    border: none;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    margin: 0 var(--space-2);
    transition: all var(--transition-fast);
}

.owl-carousel .owl-dots .owl-dot.active {
    background: var(--primary-600);
    transform: scale(1.2);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader .spinner {
    display: flex;
    gap: var(--space-2);
}

#preloader .spinner div {
    width: 20px;
    height: 20px;
    background: var(--primary-600);
    border-radius: 50%;
    animation: pulse 1.4s ease-in-out infinite both;
}

#preloader .spinner div:nth-child(1) { animation-delay: -0.32s; }
#preloader .spinner div:nth-child(2) { animation-delay: -0.16s; }
#preloader .spinner div:nth-child(3) { animation-delay: 0s; }

/* Hide preloader when page loads */
body.loaded #preloader {
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

/* Additional Mobile Optimizations */
@media (max-width: 767px) {
    .pricing-s1 {
        margin-bottom: var(--space-4);
    }
    
    .pricing-s1.popular {
        transform: none;
        margin-bottom: var(--space-6);
    }
    
    .de_testi {
        margin-bottom: var(--space-4);
    }
    
    .footer-light {
        padding: var(--space-16) 0 var(--space-6);
    }
    
    .footer-light h5 {
        font-size: 1.1rem;
        margin-bottom: var(--space-4);
    }
    
    .footer-light .social-icons a {
        margin-right: var(--space-3);
        font-size: 1.1rem;
    }
}

/* ================================================== */
/* PRICING PAGE STYLES */
/* ================================================== */

/* Pricing Section */
.pricing-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, 
        var(--dark-100) 0%, 
        var(--dark-50) 50%, 
        var(--primary-50) 100%);
    position: relative;
}

.pricing-section .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--dark-900), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    background: rgba(15, 23, 42, 0.1);
    padding: var(--space-2);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
}

.toggle-label {
    font-weight: 600;
    color: var(--dark-700);
    font-size: 0.9rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark-300);
    transition: var(--transition-normal);
    border-radius: 30px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background: white;
    transition: var(--transition-normal);
    border-radius: 50%;
}

input:checked + .toggle-slider {
    background: var(--primary-600);
}

input:checked + .toggle-slider:before {
    transform: translateX(30px);
}

.toggle-badge {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

/* Pricing Cards */
.pricing-cards {
    margin-top: var(--space-12);
}

.pricing-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-400);
}

.pricing-card.popular {
    border-color: var(--primary-500);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: translateY(-8px) scale(1.07);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    padding: var(--space-2) var(--space-6);
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
}

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

.plan-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-50);
    margin-bottom: var(--space-2);
}

.plan-tagline {
    color: var(--dark-400);
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--space-8);
    padding: var(--space-6);
    background: linear-gradient(135deg, var(--primary-900), var(--primary-800));
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}

.pricing-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left var(--transition-slow);
}

.pricing-card:hover .pricing-price::before {
    left: 100%;
}

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

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-200);
}

.amount {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--primary-200);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: var(--space-8);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) 0;
    color: var(--dark-300);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li i {
    color: var(--accent-500);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing-action {
    text-align: center;
}

.pricing-action .btn-custom {
    width: 100%;
    justify-content: center;
}

/* Stats Section */
.pricing-stats-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, 
        var(--primary-900) 0%, 
        var(--dark-900) 50%, 
        var(--primary-800) 100%);
    position: relative;
}

.pricing-stats-section .section-title {
    color: var(--dark-50);
    background: linear-gradient(135deg, var(--dark-50), var(--primary-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-stats-section .lead {
    color: var(--dark-200);
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-6);
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-400);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, white, var(--primary-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--dark-200);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsive Design for Pricing Page */
@media (max-width: 768px) {
    .pricing-card.popular {
        transform: none;
        margin-bottom: var(--space-6);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-4px);
    }
    
    .toggle-wrapper {
        gap: var(--space-2);
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .stat-card {
        margin-bottom: var(--space-4);
    }
}

/* ================================================== */
/* ABOUT PAGE STYLES */
/* ================================================== */

/* About Story Section */
.about-story-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, 
        var(--dark-100) 0%, 
        var(--dark-50) 50%, 
        var(--primary-50) 100%);
    position: relative;
}

.about-image {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-normal);
}

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

.floating-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    color: white;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-2xl);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.about-content .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--dark-900), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-row {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-8);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-600);
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, var(--primary-600), var(--accent-500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--dark-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

.team-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-3xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-400);
}

.team-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: var(--space-4);
}

.team-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.9), rgba(20, 184, 166, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: var(--space-4);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all var(--transition-fast);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: white;
}

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

.team-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-50);
    margin-bottom: var(--space-2);
}

.team-position {
    color: var(--dark-400);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, 
        var(--primary-50) 0%, 
        var(--dark-50) 50%, 
        var(--primary-100) 100%);
}

.mission-content .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--dark-900);
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, var(--dark-900), var(--primary-700));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-image {
    position: relative;
    border-radius: var(--radius-3xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.mission-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-normal);
}

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

.mission-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: rgba(15, 23, 42, 0.05);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-600);
}

.feature-item i {
    color: var(--accent-500);
    font-size: 1.25rem;
}

.feature-item span {
    color: var(--dark-700);
    font-weight: 500;
}

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

.clients-card {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-3xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-lg);
}

.clients-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-50);
    margin-bottom: var(--space-2);
}

.clients-subtitle {
    color: var(--dark-400);
    font-size: 0.9rem;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    margin: 0 var(--space-2);
    transition: all var(--transition-normal);
}

.client-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.client-logo img {
    max-height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all var(--transition-normal);
}

.client-logo:hover img {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .stats-row {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .mission-features {
        gap: var(--space-3);
    }
    
    .feature-item {
        padding: var(--space-2);
    }
    
    .team-image img {
        height: 200px;
    }
    
    .client-logo {
        height: 60px;
        margin: 0 var(--space-1);
    }
    
    .client-logo img {
        max-height: 30px;
    }
}

/* Print Styles */
@media print {
    .header-light,
    .footer-light,
    .btn-custom,
    #preloader {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .hero-section,
    .features-section {
        page-break-inside: avoid;
    }
}
