/* ============================================
   PAGORIYA SOFTWARE - PREMIUM DESIGN SYSTEM
   Ultra-Modern, Glassmorphism, Advanced Animations
============================================ */

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

/* ========== ROOT VARIABLES ========== */
:root {
    /* Premium Color Palette */
    --primary-600: #4f46e5;
    --primary-500: #6366f1;
    --primary-400: #818cf8;
    --primary-300: #a5b4fc;
    
    --secondary-600: #7c3aed;
    --secondary-500: #8b5cf6;
    --secondary-400: #a78bfa;
    
    --accent-600: #db2777;
    --accent-500: #ec4899;
    --accent-400: #f472b6;
    
    --gold-500: #f59e0b;
    --gold-400: #fbbf24;
    
    --success-500: #10b981;
    --success-400: #34d399;
    
    --error-500: #ef4444;
    --warning-500: #f59e0b;
    
    /* Neutrals */
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
    --gradient-purple: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(28,100%,74%,0.3) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(189,100%,56%,0.3) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(355,100%,93%,0.3) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, hsla(340,100%,76%,0.3) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, hsla(22,100%,77%,0.3) 0px, transparent 50%),
                     radial-gradient(at 80% 100%, hsla(242,100%,70%,0.3) 0px, transparent 50%),
                     radial-gradient(at 0% 0%, hsla(343,100%,76%,0.3) 0px, transparent 50%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
    
    /* Spacing System */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Space Grotesk', monospace;
    
    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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 40px rgba(99, 102, 241, 0.4);
    --shadow-glow-lg: 0 0 60px rgba(99, 102, 241, 0.6);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ========== BASE STYLES ========== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-900);
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

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

p {
    line-height: 1.7;
    color: var(--gray-600);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ========== CUSTOM CURSOR ========== */
.custom-cursor {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-500);
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s ease;
    display: none;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-400);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    display: none;
}

@media (min-width: 1024px) {
    .custom-cursor,
    .cursor-follower {
        display: block;
    }
}

/* ========== PRELOADER ========== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

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

.preloader-content h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

/* ========== GLASS EFFECT ========== */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: 1rem 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
}

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

.nav-link {
    font-weight: 600;
    font-size: 0.938rem;
    color: var(--gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-link:hover {
    color: var(--primary-500);
}

.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.938rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: var(--z-modal);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-500);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ========== BUTTONS ========== */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

.btn-secondary-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    color: var(--primary-600);
    border: 2px solid var(--primary-200);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.btn-secondary-premium:hover {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-600);
    border: 2px solid var(--primary-600);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.btn-premium-outline:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-premium-outline:active {
    transform: translateY(0);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

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

.btn-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    z-index: var(--z-tooltip);
    transition: width 0.1s ease;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all var(--transition-base);
    z-index: var(--z-sticky);
    box-shadow: var(--shadow-xl);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
}

/* ========== SCROLL INDICATOR ========== */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease 1s both;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--gray-700);
    border-radius: 15px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-700);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator p {
    font-size: 0.75rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ========== GRADIENT TEXT ========== */
.gradient-text-premium {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

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

/* ========== SECTION HEADER ========== */
.section-header-premium {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-tag-premium {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(99, 102, 241, 0.1);
    backdrop-filter: blur(10px);
    color: var(--primary-600);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.section-tag-premium.light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.section-header-premium.light h2,
.section-header-premium.light p {
    color: white;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 700px;
    margin: 1rem auto 0;
    font-weight: 400;
}
/* ========== HERO SECTION - PREMIUM ========== */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0.7;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float-random 20s ease-in-out infinite;
}

.float-element:nth-child(1) {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    top: 50%;
    right: -100px;
    animation-delay: 3s;
}

.float-element:nth-child(3) {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    bottom: -100px;
    left: 20%;
    animation-delay: 6s;
}

.float-element:nth-child(4) {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    top: 30%;
    left: 40%;
    animation-delay: 9s;
}

.float-element:nth-child(5) {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    bottom: 20%;
    right: 30%;
    animation-delay: 12s;
}

@keyframes float-random {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        transform: translate(40px, 40px) rotate(270deg);
    }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content-premium {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.badge-icon {
    font-size: 1.5rem;
}

.hero-badge span {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.938rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
    letter-spacing: -1px;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 3rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 0 auto 3rem;
    max-width: 900px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s ease both;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-card:nth-child(1) { animation-delay: 0.6s; }
.stat-card:nth-child(2) { animation-delay: 0.7s; }
.stat-card:nth-child(3) { animation-delay: 0.8s; }
.stat-card:nth-child(4) { animation-delay: 0.9s; }

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

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

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

.stat-content p {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 600;
    margin: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.hero-trust {
    animation: fadeInUp 0.8s ease 1.2s both;
}

.hero-trust > p {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-700);
    font-weight: 600;
}

.trust-badge i {
    color: var(--success-500);
    font-size: 1rem;
}

/* ========== INDUSTRIES SECTION ========== */
.industries-premium {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

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

.industry-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(99, 102, 241, 0.1);
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-300);
    background: rgba(255, 255, 255, 0.95);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    transition: all var(--transition-base);
}

.industry-card:hover .industry-icon {
    transform: rotateY(360deg);
}

.industry-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.industry-card p {
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.industry-stats {
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-full);
    display: inline-block;
}

.industry-stats span {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-600);
}

/* ========== FEATURES SECTION - PREMIUM ========== */
.features-premium {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.features-showcase {
    max-width: 1200px;
    margin: 0 auto;
}

.feature-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: all var(--transition-base);
}

.tab-btn i {
    font-size: 1.25rem;
    transition: transform var(--transition-base);
}

.tab-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-500);
    box-shadow: var(--shadow-xl);
}

.tab-btn.active i {
    transform: scale(1.2);
}

.feature-content-area {
    position: relative;
}

.feature-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    animation: fadeIn 0.5s ease;
}

.feature-panel.active {
    display: grid;
}

.feature-visual {
    position: relative;
}

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

.feature-img {
    width: 100%;
    border-radius: var(--radius-2xl);
    transition: transform var(--transition-slow);
}

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

.feature-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-600);
    box-shadow: var(--shadow-lg);
}

.feature-details h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.feature-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-benefits i {
    color: var(--success-500);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-benefits strong {
    display: block;
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.feature-benefits span {
    font-size: 0.938rem;
    color: var(--gray-600);
}

.feature-stats-inline {
    display: flex;
    gap: 3rem;
}

.inline-stat strong {
    display: block;
    font-size: 2rem;
    color: var(--primary-600);
    font-weight: 900;
}

.inline-stat span {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.additional-features {
    margin-top: 5rem;
}

.additional-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

.mini-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.mini-feature {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.mini-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-300);
}

.mini-feature i {
    font-size: 2.5rem;
    color: var(--primary-500);
    margin-bottom: 1rem;
}

.mini-feature h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.mini-feature p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* ========== SHOWCASE/GALLERY ========== */
.showcase-premium {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

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

.showcase-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid rgba(99, 102, 241, 0.1);
    cursor: pointer;
}

.showcase-item.featured {
    grid-column: span 2;
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-gold);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.showcase-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.showcase-image {
    position: relative;
    overflow: hidden;
}

.showcase-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.zoom-btn {
    width: 60px;
    height: 60px;
    background: white;
    color: var(--primary-600);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all var(--transition-base);
}

.zoom-btn:hover {
    transform: scale(1.2);
    background: var(--primary-500);
    color: white;
}

.showcase-info {
    padding: 1.5rem;
}

.showcase-info h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.showcase-info p {
    font-size: 0.938rem;
    color: var(--gray-600);
}
/* ========== COMPARISON TABLE ========== */
.comparison-section {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr;
    border-bottom: 1px solid var(--gray-200);
}

.comparison-header {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
}

.comparison-header h3 {
    font-size: 1.5rem;
    color: white;
}

.us-col.highlighted {
    position: relative;
}

.winner-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--gradient-gold);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    width: fit-content;
}

.comparison-row {
    padding: 1.5rem 2rem;
    transition: background var(--transition-base);
}

.comparison-row:hover {
    background: rgba(99, 102, 241, 0.05);
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-col strong {
    color: var(--gray-900);
    font-size: 1rem;
}

.competitor-col,
.us-col {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check {
    color: var(--success-500);
    font-size: 1.5rem;
}

.cross {
    color: var(--error-500);
    font-size: 1.5rem;
}

.competitor-col span:last-child,
.us-col span:last-child {
    color: var(--gray-700);
    font-weight: 600;
}

/* ========== PRICING SECTION ========== */
.pricing-premium {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.pricing-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.pricing-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card-premium {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.pricing-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.pricing-card-premium.featured-plan {
    transform: scale(1.05);
    border-color: var(--gold-400);
    box-shadow: var(--shadow-2xl);
}

.pricing-card-premium.featured-plan:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-gold);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.pricing-header-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.pricing-header-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.pricing-price .original-price {
    font-size: 1.25rem;
    color: var(--gray-400);
    text-decoration: line-through;
    font-weight: 500;
}

.pricing-price .current-price {
    display: flex;
    align-items: baseline;
}

.pricing-price .discount-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.pricing-price .currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-600);
}

.pricing-price .amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-600);
    line-height: 1;
    margin: 0 0.5rem;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--gray-500);
}

.pricing-features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    color: var(--gray-700);
    font-weight: 500;
}

.pricing-features-list i {
    color: var(--success-500);
    font-size: 1.25rem;
}

.pricing-extras {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.pricing-extras h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.extras-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.extra-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.extra-item i {
    font-size: 2rem;
    color: var(--primary-500);
}

.extra-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.extra-item p {
    font-size: 0.938rem;
    color: var(--gray-600);
}

.guarantee-banner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
}

.guarantee-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.guarantee-content p {
    color: var(--gray-600);
}

/* ========== TESTIMONIALS ========== */
.testimonials-premium {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafb 100%);
}

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

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    transition: all var(--transition-base);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
}

.testimonial-card-premium.featured-testimonial {
    border-color: var(--gold-400);
    border-width: 2px;
}

.testimonial-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--primary-200);
}

.testimonial-author h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.testimonial-author p {
    font-size: 0.938rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.rating i {
    color: var(--gold-400);
    font-size: 1rem;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 3rem;
    color: var(--primary-200);
    opacity: 0.5;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-700);
    padding-left: 2rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--success-500);
    font-weight: 600;
}

.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item-testimonial {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.stat-item-testimonial h3 {
    font-size: 3rem;
    color: var(--primary-600);
    margin-bottom: 0.5rem;
}

.stat-item-testimonial p {
    color: var(--gray-600);
    font-weight: 600;
}

.stat-item-testimonial .stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: 0.5rem;
}

.stat-item-testimonial .stars i {
    color: var(--gold-400);
}

/* ========== DOWNLOADS ========== */
.downloads-premium {
    padding: var(--spacing-3xl) 0;
    background: #ffffff;
}

.downloads-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.download-item-premium {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.download-item-premium:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-300);
}

.download-icon-premium {
    width: 90px;
    height: 90px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: white;
    transition: transform var(--transition-base);
}

.download-item-premium:hover .download-icon-premium {
    transform: scale(1.1) rotate(5deg);
}

.download-item-premium h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.download-item-premium p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.download-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.download-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
    font-weight: 600;
}

.download-meta i {
    color: var(--primary-500);
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

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

.installation-guide {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.installation-guide h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.guide-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.step-content h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.step-content p {
    font-size: 0.938rem;
    color: var(--gray-600);
}

/* ========== CTA SECTION ========== */
.cta-premium {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.cta-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-content-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-premium h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-content-premium > p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.cta-buttons-premium {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: white;
    color: var(--primary-600);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.25rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-2xl);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: transparent;
    color: white;
    border: 3px solid white;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.btn-cta-secondary:hover {
    background: white;
    color: var(--primary-600);
    transform: translateY(-5px);
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
}

.benefit-item i {
    color: var(--success-400);
    font-size: 1.25rem;
}

/* ========== FOOTER ========== */
.footer-premium {
    background: var(--gray-900);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

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

.footer-section-premium h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-logo-premium {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo-premium .logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-desc {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

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

.social-links-premium a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.social-links-premium a:hover {
    background: var(--primary-500);
    transform: translateY(-5px);
}

.footer-section-premium ul {
    list-style: none;
}

.footer-section-premium ul li {
    margin-bottom: 0.875rem;
}

.footer-section-premium ul li a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-section-premium ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-info i {
    color: var(--primary-400);
    margin-top: 0.25rem;
}

.footer-bottom-premium {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-premium p {
    color: var(--gray-400);
}

.footer-links-premium {
    display: flex;
    gap: 2rem;
}

.footer-links-premium a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer-links-premium a:hover {
    color: white;
}

/* ========== LIGHTBOX MODAL ========== */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: var(--z-modal);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
}

.lightbox-caption-modal {
    background: white;
    padding: 2rem;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
    margin-top: -10px;
}

.lightbox-caption-modal h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.lightbox-caption-modal p {
    color: var(--gray-600);
}

.lightbox-close-btn,
.lightbox-nav-btn {
    position: absolute;
    background: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--primary-600);
    transition: all var(--transition-base);
    z-index: calc(var(--z-modal) + 1);
}

.lightbox-close-btn {
    top: 2rem;
    right: 2rem;
}

.lightbox-nav-btn.prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-nav-btn.next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close-btn:hover,
.lightbox-nav-btn:hover {
    background: var(--primary-500);
    color: white;
    transform: scale(1.1);
}

.lightbox-nav-btn.prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.next:hover {
    transform: translateY(-50%) scale(1.1);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .feature-panel {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-stats-premium {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-item.featured {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow-2xl);
        transition: left var(--transition-base);
        align-items: flex-start;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats-premium {
        grid-template-columns: 1fr;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
    
    /* Feature Tabs - Hide on mobile */
    .feature-tabs {
        display: none;
    }
    
    /* Feature Panels - Make them accordion style */
    .feature-content-area {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-panel {
        display: block !important;
        grid-template-columns: 1fr;
        border: 2px solid var(--gray-200);
        border-radius: var(--radius-xl);
        overflow: hidden;
        background: white;
    }
    
    .feature-panel::before {
        content: attr(data-tab-title);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1.25rem 1.5rem;
        background: var(--gradient-primary);
        color: white;
        font-weight: 600;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all var(--transition-base);
    }
    
    .feature-panel .feature-visual,
    .feature-panel .feature-details {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        padding: 0 1.5rem;
        transition: all 0.4s ease;
    }
    
    .feature-panel.active::before {
        background: var(--gradient-purple);
    }
    
    .feature-panel.active .feature-visual,
    .feature-panel.active .feature-details {
        max-height: 5000px;
        opacity: 1;
        padding: 1.5rem;
    }
    
    .feature-visual {
        margin-bottom: 1rem;
    }
    
    /* Comparison Table - Fix scattered layout */
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 1.5rem;
        border-bottom: 1px solid var(--gray-200);
        text-align: left;
    }
    
    .comparison-row .feature-col {
        font-size: 1rem;
        font-weight: 700;
        color: var(--gray-900);
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: 2px solid var(--primary-500);
    }
    
    .comparison-row .competitor-col,
    .comparison-row .us-col {
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 0.75rem;
        border-radius: var(--radius-lg);
        background: var(--gray-50);
    }
    
    .comparison-row .competitor-col {
        background: rgba(239, 68, 68, 0.05);
    }
    
    .comparison-row .us-col {
        background: rgba(16, 185, 129, 0.05);
        border: 2px solid var(--success-500);
        font-weight: 600;
    }
    
    .comparison-row .competitor-col::before {
        content: "Others: ";
        font-weight: 700;
        color: var(--error-500);
        margin-right: 0.25rem;
    }
    
    .comparison-row .us-col::before {
        content: "Pagoriya: ";
        font-weight: 700;
        color: var(--success-500);
        margin-right: 0.25rem;
    }
    
    .comparison-row .check,
    .comparison-row .cross {
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card-premium.featured-plan {
        transform: scale(1);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .downloads-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .guide-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-premium {
        flex-direction: column;
    }
    
    .footer-content-premium {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links-premium {
        justify-content: center;
    }
    
    .footer-bottom-premium {
        flex-direction: column;
        text-align: center;
    }
    
    .lightbox-close-btn {
        top: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .lightbox-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .lightbox-nav-btn.prev {
        left: 1rem;
    }
    
    .lightbox-nav-btn.next {
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-premium,
    .btn-secondary-premium {
        padding: 0.875rem 1.5rem;
        font-size: 0.938rem;
    }
    
    .section-header-premium h2 {
        font-size: 2rem;
    }
}
