/* ============================================
   ClassDarpan - Main Stylesheet
   Modern Education SaaS UI - Purple Theme
   ============================================ */

/* ============================================
   CSS Custom Properties (Variables)
   ============================================ */
:root {
    /* Primary Colors - Purple Theme */
    --primary: rgb(132, 90, 223);
    --primary-rgb: 132, 90, 223;
    --primary-dark: rgb(98, 65, 185);
    --primary-light: rgb(180, 140, 255);
    --primary-lighter: rgba(132, 90, 223, 0.1);
    --primary-lightest: rgba(132, 90, 223, 0.05);
    
    /* Secondary Colors */
    --secondary: rgb(108, 99, 255);
    --secondary-dark: rgb(85, 75, 220);
    --secondary-light: rgb(140, 130, 255);
    
    /* Accent Colors */
    --accent: #06B6D4;
    --accent-dark: #0891B2;
    --accent-light: #67E8F9;
    
    /* Success, Warning, Error */
    --success: #10B981;
    --success-light: #D1FAE5;
    --warning: #F59E0B;
    --warning-light: #FEF3C7;
    --error: #EF4444;
    --error-light: #FEE2E2;
    
    /* Neutrals */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F7FF;
    --bg-tertiary: #F3F4F6;
    --bg-dark: #0F0A1F;
    
    /* Text Colors */
    --text-primary: #1A1A2E;
    --text-secondary: #4B5563;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, rgb(132, 90, 223) 0%, rgb(180, 140, 255) 100%);
    --gradient-primary-reverse: linear-gradient(135deg, rgb(180, 140, 255) 0%, rgb(132, 90, 223) 100%);
    --gradient-primary-horizontal: linear-gradient(to right, rgb(132, 90, 223), rgb(98, 65, 185));
    --gradient-hero: linear-gradient(135deg, rgba(132, 90, 223, 0.1) 0%, rgba(180, 140, 255, 0.1) 50%, rgba(132, 90, 223, 0.05) 100%);
    --gradient-hero-dark: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
    --gradient-card: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    --gradient-glow: radial-gradient(ellipse at center, rgba(132, 90, 223, 0.3) 0%, transparent 70%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(132, 90, 223, 0.1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px -10px rgba(132, 90, 223, 0.4);
    --shadow-glow: 0 0 40px rgba(132, 90, 223, 0.3);
    --shadow-card: 0 4px 24px rgba(132, 90, 223, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(132, 90, 223, 0.15);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Font Families - Modern & Trendy */
    --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* 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;
    --z-cursor: 9999;
}

/* ============================================
   Base Styles
   ============================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    /*cursor: none;*/
}

/* Show default cursor on touch devices */
@media (hover: none) and (pointer: coarse) {
    body {
        cursor: auto;
    }
    
    a, button, input, textarea, select {
        cursor: auto;
    }
}

/* Hide default cursor for interactive elements */
a, button, input, textarea, select, .btn {
 /*   cursor: none;*/
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    z-index: 10000;
    font-weight: 600;
    font-size: 0.875rem;
    transition: top var(--transition);
}

.skip-link:focus {
    top: 1rem;
    color: white;
    outline: 2px solid white;
    outline-offset: 2px;
}

/* ============================================
   Custom Cursor
   ============================================ */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
    mix-blend-mode: difference;
}

.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: calc(var(--z-cursor) - 1);
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.cursor-dot.hover {
    width: 12px;
    height: 12px;
    background: var(--primary-light);
}

.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: var(--primary-light);
    background: rgba(132, 90, 223, 0.1);
}

.cursor-dot.click {
    transform: translate(-50%, -50%) scale(0.8);
}

.cursor-outline.click {
    transform: translate(-50%, -50%) scale(0.8);
}

@media (hover: none) and (pointer: coarse) {
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* ============================================
   Typography - Modern & Refined
   ============================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: 0.875rem;
    letter-spacing: -0.02em;
}

h1, .h1 { font-size: 2.75rem; font-weight: 800; }
h2, .h2 { font-size: 2.125rem; }
h3, .h3 { font-size: 1.5rem; }
h4, .h4 { font-size: 1.25rem; font-weight: 600; }
h5, .h5 { font-size: 1.0625rem; font-weight: 600; }
h6, .h6 { font-size: 0.9375rem; font-weight: 600; }

@media (max-width: 992px) {
    h1, .h1 { font-size: 2.25rem; }
    h2, .h2 { font-size: 1.875rem; }
    h3, .h3 { font-size: 1.375rem; }
}

@media (max-width: 768px) {
    h1, .h1 { font-size: 1.875rem; }
    h2, .h2 { font-size: 1.5rem; }
    h3, .h3 { font-size: 1.25rem; }
    h4, .h4 { font-size: 1.125rem; }
}

p {
    margin-bottom: 0.875rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.lead {
    font-size: 1.0625rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.75;
}

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

.text-highlight {
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.3em;
    background: rgba(132, 90, 223, 0.2);
    z-index: -1;
    border-radius: 2px;
}

/* ============================================
   Links
   ============================================ */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   Buttons - Refined & Modern
   ============================================ */
.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.6875rem 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border: 1.5px solid transparent;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

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

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: 0.8125rem 1.75rem;
    font-size: 0.9375rem;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px -10px rgba(132, 90, 223, 0.5);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-secondary {
    background: var(--gray-100);
    color: var(--text-primary);
    border-color: var(--gray-200);
}

.btn-secondary:hover {
    background: var(--gray-200);
    color: var(--text-primary);
}

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

.btn-white:hover {
    background: var(--gray-50);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: var(--radius-full);
}

/* Animated Button */
.btn-animated {
    position: relative;
    z-index: 1;
}

.btn-animated::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary-reverse);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition);
}

.btn-animated:hover::after {
    opacity: 1;
}

/* ============================================
   Navigation
   ============================================ */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-sticky);
    padding: 1rem 2rem;
    transition: all var(--transition-slow);
}

.header-wrapper.scrolled {
    padding: 0.5rem 2rem;
}

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

.navbar {
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all var(--transition-slow);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    box-shadow: var(--glass-shadow);
}

.navbar.scrolled {
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(132, 90, 223, 0.12);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.navbar-brand .navbar-logo {
    height: 40px;
    width: auto;
    max-height: 44px;
    object-fit: contain;
    display: block;
    transition: transform var(--transition);
}

.navbar-brand:hover .navbar-logo {
    transform: scale(1.03);
}

@media (max-width: 576px) {
    .navbar-brand .navbar-logo {
        height: 34px;
        max-height: 36px;
    }
}

.navbar-brand:hover {
    color: var(--text-primary);
}

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

.navbar-brand:hover .logo-icon {
    transform: rotate(-10deg) scale(1.05);
}

.logo-text {
    color: var(--text-primary);
}

.logo-text span {
    color: var(--primary);
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    transition: all var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--primary-lighter);
}

.nav-cta {
    margin-left: 1rem;
}

.nav-cta .btn {
    border-radius: var(--radius-full);
}

@media (max-width: 1200px) {
    .header-wrapper {
        padding: 1rem 1rem;
    }
}

@media (max-width: 991px) {
    .header-wrapper {
        padding: 0.75rem;
    }
    
    .navbar {
        border-radius: var(--radius-2xl);
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: var(--radius-xl);
        margin-top: 1rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 1rem;
        flex-direction: column;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .header-wrapper {
        padding: 0.5rem;
    }
    
    .navbar {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-xl);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding: 12rem 0 6rem;
    background: var(--gradient-hero);
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: var(--gradient-glow);
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(180, 140, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 10s ease-in-out infinite reverse;
}

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

/* Floating shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-shape:nth-child(1) {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-shape:nth-child(2) {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.hero-shape:nth-child(3) {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 15%;
    animation-delay: 4s;
}

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

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.375rem 1rem;
    background: white;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-card);
    margin-bottom: 1.25rem;
    border: 1px solid rgba(132, 90, 223, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-badge i,
.hero-badge img {
    font-size: 0.875rem;
    animation: sparkle 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 600px;
    letter-spacing: -0.025em;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 3.5rem;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

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

.hero-cta .btn {
    padding: 1rem 2rem;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(132, 90, 223, 0.1);
}

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

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* Hero Image / Dashboard Preview */
.hero-image {
    position: relative;
    z-index: 1;
}

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

.dashboard-preview {
    background: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 100%);
    border-radius: var(--radius-2xl);
    padding: 1.5rem;
    min-height: 450px;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard-dot.red { background: #FF5F56; }
.dashboard-dot.yellow { background: #FFBD2E; }
.dashboard-dot.green { background: #27CA40; }

.dashboard-body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.dashboard-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all var(--transition);
}

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

.dashboard-card-lg {
    grid-column: span 2;
}

.dashboard-card i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.dashboard-card .text-primary { color: var(--primary-light) !important; }
.dashboard-card .text-success { color: #10B981 !important; }
.dashboard-card .text-warning { color: #F59E0B !important; }
.dashboard-card .text-info { color: #06B6D4 !important; }
.dashboard-card .text-danger { color: #EF4444 !important; }

.dashboard-card small {
    color: rgba(255, 255, 255, 0.6);
}

.dashboard-card h5 {
    color: white;
    font-size: 1.5rem;
    margin: 0;
}

/* Floating Cards on Hero */
.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-xl);
    padding: 1rem 1.5rem;
    box-shadow: var(--shadow-card);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(132, 90, 223, 0.1);
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 10%;
    left: -15%;
    animation-delay: 0s;
}

.hero-floating-card.card-2 {
    bottom: 15%;
    right: -10%;
    animation-delay: 1s;
}

.hero-floating-card.card-3 {
    top: 50%;
    left: -20%;
    animation-delay: 2s;
}

.floating-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.floating-icon.success { background: linear-gradient(135deg, #10B981, #34D399); }
.floating-icon.primary { background: var(--gradient-primary); }
.floating-icon.warning { background: linear-gradient(135deg, #F59E0B, #FBBF24); }
.floating-icon.info { background: linear-gradient(135deg, #06B6D4, #22D3EE); }

.floating-content h6 {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
    color: var(--text-primary);
}

.floating-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   Trusted By / Logo Section
   ============================================ */
.trusted-section {
    padding: 4rem 0;
    background: white;
    border-bottom: 1px solid var(--gray-100);
}

.trusted-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--gray-400);
    font-size: 1.125rem;
    transition: all var(--transition);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-xl);
}

.partner-logo:hover {
    color: var(--primary);
    background: var(--primary-lighter);
}

.partner-logo i {
    font-size: 2rem;
}

/* ============================================
   Section Styles
   ============================================ */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-sm {
    padding: 4rem 0;
}

.section-lg {
    padding: 8rem 0;
}

.section-gray {
    background: var(--bg-secondary);
}

.section-gradient {
    background: var(--gradient-hero);
}

.section-dark {
    background: var(--bg-dark);
    color: white;
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: white;
}

.section-dark p {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    padding: 0.375rem 0.875rem;
    background: var(--primary-lighter);
    border-radius: var(--radius-full);
}

.section-label i {
    font-size: 0.75rem;
}

.section-title {
    font-size: 2.125rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   Glassmorphism Cards
   ============================================ */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--glass-shadow);
    transition: all var(--transition);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

/* ============================================
   Feature Cards
   ============================================ */
.feature-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(132, 90, 223, 0.1);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(132, 90, 223, 0.2);
}

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


    

    .feature-icon {
        width: 56px;
        height: 56px;
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        background: var(--primary-lighter);
        color: var(--primary);
        transition: all var(--transition);
    }

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05) rotate(-3deg);
}

.feature-icon.secondary {
    background: rgba(108, 99, 255, 0.1);
    color: var(--secondary);
}

.feature-card:hover .feature-icon.secondary {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
}

.feature-icon.accent {
    background: rgba(6, 182, 212, 0.1);
    color: var(--accent-dark);
}

.feature-card:hover .feature-icon.accent {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent-light));
}

.feature-icon.success {
    background: var(--success-light);
    color: var(--success);
}

.feature-card:hover .feature-icon.success {
    background: linear-gradient(135deg, var(--success), #34D399);
}

.feature-icon.warning {
    background: var(--warning-light);
    color: var(--warning);
}

.feature-card:hover .feature-icon.warning {
    background: linear-gradient(135deg, var(--warning), #FBBF24);
}

.feature-card h3,
.feature-card h4 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #8645f6;
}

.feature-card p {
    font-size: 0.875rem;
    margin-bottom: 0;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Feature List Style */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.feature-list li i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-top: 0.125rem;
}

/* ============================================
   Module Cards (with gradient border)
   ============================================ */
.module-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all var(--transition);
}

.module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(132, 90, 223, 0.3), rgba(180, 140, 255, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.module-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-glow);
}

.module-card:hover::before {
    background: var(--gradient-primary);
}

.module-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
}

.module-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
    font-weight: 600;
}

.module-card p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.65;
}

/* ============================================
   Why Choose Us / USP Section
   ============================================ */
.usp-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(132, 90, 223, 0.1);
    height: 100%;
    transition: all var(--transition);
}

.usp-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-8px) scale(1.03);
    border-color: transparent;
}

.usp-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-primary);
    transition: all var(--transition);
}

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

.usp-card h3,
.usp-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.usp-card p {
    font-size: 0.8125rem;
    line-height: 1.65;
}

/* ============================================
   Statistics Section
   ============================================ */
.stats-section {
    background: var(--gradient-primary);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    position: relative;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.375rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonial-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(132, 90, 223, 0.1);
    transition: all var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 5rem;
    font-family: Georgia, serif;
    color: var(--primary-lighter);
    line-height: 1;
}

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

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #FBBF24;
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    overflow: hidden;
}

.testimonial-info h6 {
    font-size: 0.875rem;
    margin-bottom: 0.125rem;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0;
}

/* ============================================
   How It Works / Steps
   ============================================ */
.steps-section {
    position: relative;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-primary);
    position: relative;
    z-index: 2;
}

.step-connector {
    position: absolute;
    top: 4rem;
    left: 50%;
    right: -50%;
    height: 2px;
    background: linear-gradient(to right, var(--primary), transparent);
    z-index: 1;
}

.step-card:last-child .step-connector {
    display: none;
}

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

.step-card:hover .step-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================
   Pricing
   ============================================ */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-weight: 600;
    color: var(--text-secondary);
    transition: color var(--transition);
}

.pricing-toggle span.active {
    color: var(--primary);
}

.pricing-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    transition: all var(--transition);
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-2xl);
    padding: 2px;
    background: linear-gradient(135deg, rgba(132, 90, 223, 0.2), rgba(180, 140, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

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

.pricing-card:hover::before {
    background: var(--gradient-primary);
}

.pricing-card.featured {
    background: linear-gradient(180deg, rgba(132, 90, 223, 0.05) 0%, white 100%);
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    background: var(--gradient-primary);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.375rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.pricing-name {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--text-primary);
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.pricing-price span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
}

.pricing-description {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 0.375rem;
}

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

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.pricing-features li i,
.pricing-features li img {
    font-size: 0.875rem;
}

.pricing-features li i.bi-check-circle-fill {
    color: var(--primary);
}

.pricing-features li i.bi-x {
    color: var(--gray-400);
}

.pricing-cta {
    margin-top: auto;
}

.pricing-cta .btn {
    width: 100%;
}

/* ============================================
   About Page Styles
   ============================================ */
.about-hero {
    background: var(--gradient-hero);
    padding: 12rem 0 6rem;
}

.mission-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    height: 100%;
    box-shadow: var(--shadow-card);
    transition: all var(--transition);
    border: 1px solid rgba(132, 90, 223, 0.1);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

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

.team-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(132, 90, 223, 0.1);
    transition: all var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    color: var(--primary);
    border: 4px solid white;
    box-shadow: var(--shadow-card);
}

.team-card h5 {
    margin-bottom: 0.25rem;
}

.team-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-lighter);
    color: var(--primary);
    transition: all var(--transition);
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px);
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0;
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    transform: translateX(-7.5px);
}

.timeline-item h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

/* ============================================
   Contact Page Styles
   ============================================ */
.contact-hero {
    background: var(--gradient-hero);
    padding: 12rem 0 6rem;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 2rem;
    height: 100%;
    border: 1px solid rgba(132, 90, 223, 0.1);
    text-align: center;
    transition: all var(--transition);
}

.contact-info-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-5px);
}

.contact-info-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1.5rem;
    background: var(--primary-lighter);
    color: var(--primary);
    transition: all var(--transition);
}

.contact-info-card:hover .contact-info-icon {
    background: var(--gradient-primary);
    color: white;
}

.contact-form-wrapper {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(132, 90, 223, 0.1);
}

.form-control,
.form-select {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xl);
    border: 2px solid var(--gray-200);
    font-size: 1rem;
    transition: all var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-lighter);
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-placeholder {
    background: var(--primary-lighter);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    text-align: center;
    color: var(--primary);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ============================================
   Features Page Styles
   ============================================ */
.feature-hero {
    background: var(--gradient-hero);
    padding: 12rem 0 6rem;
}

.feature-detail-card {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 3rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(132, 90, 223, 0.1);
    transition: all var(--transition);
}

.feature-detail-card:hover {
    box-shadow: var(--shadow-card-hover);
}

.feature-detail-icon {
    width: 88px;
    height: 88px;
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-screenshot {
    background: linear-gradient(135deg, var(--primary-lighter), rgba(180, 140, 255, 0.1));
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    color: var(--primary);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(132, 90, 223, 0.1);
}

.feature-screenshot i {
    font-size: 5rem;
    opacity: 0.5;
}

/* Feature Tabs */
.feature-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 3rem;
    justify-content: center;
}

.feature-tab {
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    background: white;
    border: 2px solid rgba(132, 90, 223, 0.2);
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all var(--transition);
}

.feature-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.feature-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-primary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-main {
    padding: 6rem 0 4rem;
}

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

.footer-brand .logo-icon {
    background: var(--gradient-primary);
}

.footer-brand .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-contact {
    font-style: normal;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.625rem;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact p i {
    color: var(--primary-light);
    margin-top: 0.125rem;
    font-size: 0.875rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h5 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-legal a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-legal {
        justify-content: center;
    }
}

/* ============================================
   Back to Top Button
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-primary);
    font-size: 1.25rem;
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(132, 90, 223, 0.5);
}

/* ============================================
   FAQ Accordion
   ============================================ */
.faq-accordion .accordion-item {
    border: 1px solid rgba(132, 90, 223, 0.1);
    border-radius: var(--radius-xl) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: white;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: white;
    color: var(--text-primary);
    font-size: 1rem;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-lighter);
    color: var(--primary);
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23845ADF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-accordion .accordion-body {
    padding: 1.25rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   AOS Animation Overrides
   ============================================ */
[data-aos] {
    pointer-events: auto !important;
}

/* ============================================
   Responsive Adjustments
   ============================================ */
@media (max-width: 1200px) {
    .hero {
        padding: 10rem 0 5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 5rem 0;
    }
    
    .section-lg {
        padding: 6rem 0;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 9rem 0 4rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 3rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card,
    .module-card {
        padding: 1.5rem;
    }
}

/* ============================================
   Utility Classes
   ============================================ */
.text-primary { color: var(--primary) !important; }
.bg-primary-light { background-color: var(--primary-lighter) !important; }
.bg-gradient { background: var(--gradient-primary) !important; }

.rounded-lg { border-radius: var(--radius-lg) !important; }
.rounded-xl { border-radius: var(--radius-xl) !important; }
.rounded-2xl { border-radius: var(--radius-2xl) !important; }

.shadow-lg { box-shadow: var(--shadow-lg) !important; }
.shadow-xl { box-shadow: var(--shadow-xl) !important; }
.shadow-glow { box-shadow: var(--shadow-glow) !important; }

/* ============================================
   DARK THEME - Home Page
   ============================================ */
.dark-theme {
    --bg-dark-primary: #0a0118;
    --bg-dark-secondary: #110620;
    --bg-dark-tertiary: #1a0a2e;
    --bg-dark-card: rgba(26, 10, 46, 0.8);
    --bg-dark-card-hover: rgba(40, 20, 70, 0.9);
    --text-dark-primary: #ffffff;
    --text-dark-secondary: rgba(255, 255, 255, 0.8);
    --text-dark-muted: rgba(255, 255, 255, 0.6);
    --border-dark: rgba(132, 90, 223, 0.2);
    --border-dark-light: rgba(255, 255, 255, 0.1);
}

.dark-theme {
    background: var(--bg-dark-primary);
    color: var(--text-dark-primary);
}

/* Dark Hero Section */
.dark-theme .hero {
    background: linear-gradient(180deg, #0a0118 0%, #1a0a2e 50%, #0a0118 100%);
    position: relative;
    overflow: hidden;
}

.dark-theme .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/resources/images/shapes/bg-lines.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    pointer-events: none;
}

.dark-theme .hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(132, 90, 223, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.dark-theme .hero-title {
    color: var(--text-dark-primary);
}

.dark-theme .hero-subtitle {
    color: var(--text-dark-secondary);
}

.dark-theme .hero-badge {
    background: rgba(132, 90, 223, 0.2);
    border-color: rgba(132, 90, 223, 0.3);
    color: var(--primary-light);
}

.dark-theme .hero-stat-label {
    color: var(--text-dark-muted);
}

.dark-theme .hero-stats {
    border-top-color: var(--border-dark);
}

/* Dark Hero Image Section - Seamless Blending */
.dark-theme .hero-image-main {
    position: relative;
    border-radius: 0;
    overflow: visible;
}

.dark-theme .hero-image-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
    /* Multi-directional gradient mask for seamless blend */
   /* -webkit-mask-image: 
        radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);
    mask-image: 
        radial-gradient(ellipse 80% 70% at 50% 40%, black 30%, transparent 70%);*/
}

.dark-theme .hero-image-glow {
    position: absolute;
    top: 10%;
    left: 0%;
    right: 0%;
    bottom: 10%;
    background: radial-gradient(ellipse at center, rgba(132, 90, 223, 0.5) 0%, transparent 60%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: pulseGlow 4s ease-in-out infinite;
}

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

/* Remove overlay - let mask handle blending */
.dark-theme .hero-image-main::after {
    display: none;
}

/* Enhanced glow behind image */
.dark-theme .hero-image-wrapper {
    position: relative;
}

.dark-theme .hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 5%;
    left: -5%;
    right: -5%;
    bottom: 5%;
    background: radial-gradient(ellipse at center, rgba(132, 90, 223, 0.4) 0%, transparent 55%);
    filter: blur(60px);
    z-index: 0;
}

/* Dark Section Styles */
.dark-theme .section {
    background: var(--bg-dark-primary);
}

.dark-theme .section-gray,
.dark-theme .section-alt {
    background: var(--bg-dark-secondary);
}

.dark-theme .section-header .section-title {
    color: var(--text-dark-primary);
}

.dark-theme .section-header .section-subtitle {
    color: var(--text-dark-secondary);
}

.dark-theme .section-label {
    background: rgba(132, 90, 223, 0.2);
    color: var(--primary-light);
}

/* Dark Feature Cards */
.dark-theme .feature-card {
    background: var(--bg-dark-card);
    border-color: var(--border-dark);
    backdrop-filter: blur(20px);
}

.dark-theme .feature-card:hover {
    background: var(--bg-dark-card-hover);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(132, 90, 223, 0.25);
}

.dark-theme .feature-card h4,
.dark-theme .feature-card h5 {
    color: var(--text-dark-primary);
}

.dark-theme .feature-card p {
    color: var(--text-dark-secondary);
}

.dark-theme .feature-icon {
    background: rgba(132, 90, 223, 0.15);
}

.dark-theme .feature-card:hover .feature-icon {
    background: var(--gradient-primary);
}

/* Dark Feature Card with Image */
.dark-theme .feature-card-image {
    width: 100%;
    border-radius: var(--radius-lg);
    margin-top: 1rem;
    border: 1px solid var(--border-dark);
}

/* Dark Module Cards */
.dark-theme .module-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-dark);
}

.dark-theme .module-card::before {
    background: linear-gradient(135deg, rgba(132, 90, 223, 0.4), rgba(180, 140, 255, 0.2));
}

.dark-theme .module-card:hover {
    box-shadow: 0 20px 60px rgba(132, 90, 223, 0.3);
}

.dark-theme .module-card:hover::before {
    background: var(--gradient-primary);
}

.dark-theme .module-card h4 {
    color: var(--text-dark-primary);
}

.dark-theme .module-card p {
    color: var(--text-dark-secondary);
}

.dark-theme .module-image {
    width: 100%;
    border-radius: var(--radius-xl);
    margin-top: 1.5rem;
    border: 1px solid var(--border-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Dark USP Cards */
.dark-theme .usp-card {
    background: var(--bg-dark-card);
    border-color: var(--border-dark);
}

.dark-theme .usp-card:hover {
    background: var(--bg-dark-card-hover);
    border-color: transparent;
    box-shadow: 0 20px 60px rgba(132, 90, 223, 0.25);
}

.dark-theme .usp-card h4 {
    color: var(--text-dark-primary);
}

.dark-theme .usp-card p {
    color: var(--text-dark-secondary);
}

/* Dark Testimonial Cards */
.dark-theme .testimonial-card {
    background: var(--bg-dark-card);
    border-color: var(--border-dark);
}

.dark-theme .testimonial-card:hover {
    box-shadow: 0 20px 60px rgba(132, 90, 223, 0.25);
}

.dark-theme .testimonial-card::before {
    color: rgba(132, 90, 223, 0.2);
}

.dark-theme .testimonial-text {
    color: var(--text-dark-secondary);
}

.dark-theme .testimonial-info h6 {
    color: var(--text-dark-primary);
}

.dark-theme .testimonial-info p {
    color: var(--text-dark-muted);
}

.dark-theme .testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-full);
}

/* Dark Pricing Cards */
.dark-theme .pricing-card {
    background: var(--bg-dark-card);
}

.dark-theme .pricing-card::before {
    background: linear-gradient(135deg, rgba(132, 90, 223, 0.3), rgba(180, 140, 255, 0.2));
}

.dark-theme .pricing-card:hover::before {
    background: var(--gradient-primary);
}

.dark-theme .pricing-card.featured {
    background: linear-gradient(180deg, rgba(132, 90, 223, 0.15) 0%, var(--bg-dark-card) 100%);
}

.dark-theme .pricing-name {
    color: var(--text-dark-primary);
}

.dark-theme .pricing-description {
    color: var(--text-dark-muted);
}

.dark-theme .pricing-features li {
    color: var(--text-dark-secondary);
}

.dark-theme .pricing-header {
    border-bottom-color: var(--border-dark);
}

/* Dark Steps Section */
.dark-theme .step-card h3,
.dark-theme .step-card h4 {
    color: var(--text-dark-primary);
    font-size: 1.0625rem;
}

.dark-theme .step-card p {
    color: var(--text-dark-secondary);
    font-size: 0.875rem;
}

.dark-theme .step-icon {
    background: rgba(132, 90, 223, 0.15);
}

.dark-theme .step-card:hover .step-icon {
    background: var(--gradient-primary);
}

.dark-theme .step-connector {
    background: linear-gradient(to right, rgba(132, 90, 223, 0.5), transparent);
}

/* Dark Trusted Section */
.dark-theme .trusted-section {
    background: var(--bg-dark-secondary);
    border-bottom-color: var(--border-dark);
}

.dark-theme .trusted-title {
    color: var(--text-dark-muted);
}

.dark-theme .partner-logo {
    color: var(--text-dark-muted);
}

.dark-theme .partner-logo:hover {
    color: var(--primary-light);
    background: rgba(132, 90, 223, 0.15);
}

/* Dark CTA Section */
.dark-theme .cta-section {
    background: linear-gradient(135deg, rgba(132, 90, 223, 0.3) 0%, rgba(98, 65, 185, 0.5) 100%);
    position: relative;
}

.dark-theme .cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/resources/images/shapes/bg-lines.webp');
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

/* Dark Navbar for dark pages */
.dark-theme .header-wrapper .navbar {
    background: rgba(10, 1, 24, 0.8);
    border-color: var(--border-dark);
}

.dark-theme .header-wrapper .navbar.scrolled {
    background: rgba(10, 1, 24, 0.95);
}

.dark-theme .header-wrapper .navbar-brand .logo-text {
    color: white;
}

.dark-theme .header-wrapper .nav-link {
    color: rgba(255, 255, 255, 0.7);
}

.dark-theme .header-wrapper .nav-link:hover,
.dark-theme .header-wrapper .nav-link.active {
    color: white;
    background: rgba(132, 90, 223, 0.2);
}

/* Image Showcase Cards */
.showcase-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transition: all var(--transition);
}

.showcase-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(132, 90, 223, 0.3);
}

/* Feature Image Grid */
.feature-image-wrapper {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
}

.feature-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.6;
}

.feature-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-2xl);
    display: block;
}

/* Floating Decorative Images */
.floating-decor {
    position: absolute;
    animation: floatDecor 6s ease-in-out infinite;
}

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

.floating-decor:nth-child(2) { animation-delay: 1s; }
.floating-decor:nth-child(3) { animation-delay: 2s; }

/* Dark Stats Section Enhancement */
.dark-theme .stats-section {
    background: linear-gradient(135deg, rgba(132, 90, 223, 0.4) 0%, rgba(98, 65, 185, 0.6) 100%);
    position: relative;
}

.dark-theme .stats-section::before {
    background-image: url('/resources/images/shapes/bg-lines.webp');
    opacity: 0.1;
}

/* Glow effects */
.glow-purple {
    box-shadow: 0 0 60px rgba(132, 90, 223, 0.4);
}

.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    filter: blur(40px);
    opacity: 0.3;
    z-index: -1;
    border-radius: inherit;
}

/* Sparkle decoration */
.sparkle-img {
    position: absolute;
    width: 30px;
    height: 30px;
    animation: sparkle 2s ease-in-out infinite;
    pointer-events: none;
}

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

/* Dark Theme Feature List */
.dark-theme .feature-list {
    border: none;
}

.dark-theme .feature-list li {
    border-bottom-color: var(--border-dark);
    padding: 0.6rem 0;
}

.dark-theme .feature-list li i {
    color: var(--primary-light);
}

/* Dark Theme Button Adjustments */
.dark-theme .btn-outline-primary {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.dark-theme .btn-outline-primary:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.dark-theme .btn-ghost {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.dark-theme .btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Dark Theme Hero Floating Cards */
.dark-theme .hero-floating-card {
    background: rgba(26, 10, 46, 0.9);
    border-color: var(--border-dark);
    backdrop-filter: blur(20px);
}

.dark-theme .hero-floating-card h6 {
    color: white;
}

.dark-theme .hero-floating-card p {
    color: rgba(255, 255, 255, 0.6);
}

/* Additional Image Styling */
.dark-theme .feature-card-image {
    margin-top: 1rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-dark);
    transition: all var(--transition);
}

.dark-theme .feature-card:hover .feature-card-image {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(132, 90, 223, 0.2);
}

/* Dark Module Image */
.dark-theme .module-image {
    transition: all var(--transition);
}

.dark-theme .module-card:hover .module-image {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(132, 90, 223, 0.3);
}

/* Dark Theme Footer Enhancement */
.dark-theme + .footer,
.dark-theme ~ .footer {
    border-top: 1px solid var(--border-dark);
}

/* Responsive Dark Theme Adjustments */
@media (max-width: 992px) {
    .dark-theme .hero-floating-card {
        display: none;
    }
    
    .dark-theme .sparkle-img {
        display: none;
    }
}

@media (max-width: 768px) {
    .dark-theme .hero {
        text-align: center;
    }
    
    .dark-theme .hero-cta {
        justify-content: center;
    }
    
    .dark-theme .hero-stats {
        justify-content: center;
    }
    
    .dark-theme .feature-image-wrapper {
        margin-bottom: 2rem;
    }
}
