/* ============================================
   LANDING.CSS - Logi WorkForce Landing Page
   Purple Theme - Clean, Rich & Modern Design
   ============================================ */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Primary Purple Theme */
    --primary: #6d28d9;
    --primary-light: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-rgb: 109, 40, 217;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6d28d9 0%, #7c3aed 100%);
    --gradient-primary-reverse: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    --gradient-light: linear-gradient(135deg, rgba(109, 40, 217, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    --gradient-hero: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
    
    /* Accent Colors */
    --success: #10b981;
    --success-light: rgba(16, 185, 129, 0.1);
    --warning: #f59e0b;
    --warning-light: rgba(245, 158, 11, 0.1);
    --danger: #ef4444;
    --info: #0ea5e9;
    --info-light: rgba(14, 165, 233, 0.1);
    
    /* Text Colors */
    --text-dark: #1e293b;
    --text-primary: #334155;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-lighter: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-purple-soft: #faf5ff;
    
    /* Border */
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 8px 30px rgba(109, 40, 217, 0.3);
    --shadow-primary-lg: 0 16px 50px rgba(109, 40, 217, 0.35);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --section-py: 100px;
    --container-max: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 0;
}

p {
    margin-bottom: 0;
}

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

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

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container Override */
.container {
    max-width: var(--container-max);
    padding-left: 20px;
    padding-right: 20px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.preloader-inner {
    text-align: center;
}

.preloader-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
    box-shadow: var(--shadow-primary);
}

.preloader-icon i {
    font-size: 36px;
    color: white;
}

.preloader-text {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    padding: 18px 0;
    transition: var(--transition);
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.navbar-brand .brand-logo {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
}

.navbar-brand .brand-logo i {
    font-size: 22px;
    color: white;
}

.navbar-brand .brand-info {
    display: flex;
    flex-direction: column;
}

.navbar-brand .brand-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.navbar-brand .brand-tagline {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav {
    gap: 8px;
}

.navbar-nav .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background: var(--gradient-light);
}

.navbar-toggler {
    border: none !important;
    padding: 8px 12px;
    background: var(--bg-light);
    border-radius: var(--border-radius-sm);
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler i {
    font-size: 24px;
    color: var(--text-dark);
}

/* Navbar Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-dropdown .btn-lang {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.lang-dropdown .btn-lang:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.lang-dropdown .dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin-top: 8px;
}

.lang-dropdown .dropdown-item {
    border-radius: var(--border-radius-sm);
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.lang-dropdown .dropdown-item:hover {
    background: var(--bg-light);
}

.lang-dropdown .dropdown-item.active {
    background: var(--gradient-primary);
    color: white;
}

.btn-login-outline {
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    text-decoration: none;
}

.btn-login-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-login-solid {
    padding: 10px 20px;
    border-radius: var(--border-radius-sm);
    font-weight: 500;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    background: var(--gradient-primary);
    border: none;
    color: white;
    box-shadow: var(--shadow-primary);
    text-decoration: none;
}

.btn-login-solid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
    color: white;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: var(--gradient-hero);
    overflow: hidden;
    padding-top: 100px;
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-gradient-sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.hero-gradient-sphere.sphere-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -15%;
    right: -10%;
    animation: float 20s ease-in-out infinite;
}

.hero-gradient-sphere.sphere-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    bottom: 10%;
    left: -10%;
    animation: float 15s ease-in-out infinite reverse;
}

.hero-gradient-sphere.sphere-3 {
    width: 300px;
    height: 300px;
    background: var(--info);
    top: 50%;
    left: 30%;
    opacity: 0.1;
    animation: float 18s ease-in-out infinite;
}

.hero-mesh-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(109, 40, 217, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.hero-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(109, 40, 217, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(0, -30px); }
    75% { transform: translate(-20px, -20px); }
}

.hero-row {
    min-height: calc(100vh - 120px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(109, 40, 217, 0.1);
    border: 1px solid rgba(109, 40, 217, 0.2);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.hero-pill:hover {
    border-color: var(--primary);
    background: var(--gradient-light);
}

.hero-pill i {
    color: var(--primary);
    font-size: 16px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-primary-lg);
    color: white;
}

.btn-hero-primary i {
    transition: transform var(--transition);
}

.btn-hero-primary:hover i {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--gradient-light);
}

.btn-hero-secondary .play-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-hero-secondary .play-icon i {
    color: white;
    font-size: 14px;
    margin-left: 2px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.metric-value span {
    color: var(--primary);
}

.metric-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.metric-divider {
    width: 1px;
    height: 50px;
    background: var(--border-color);
}

/* Hero Visual / Dashboard Preview */
.hero-visual {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.dashboard-preview {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.preview-header {
    background: var(--bg-light);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border-color);
}

.preview-dots {
    display: flex;
    gap: 8px;
}

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

.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.preview-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.preview-actions {
    display: flex;
    gap: 12px;
    color: var(--text-muted);
}

.preview-actions i {
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.preview-actions i:hover {
    color: var(--primary);
}

.preview-body {
    padding: 20px;
    background: var(--bg-white);
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.stat-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}

.stat-card.stat-purple::before { background: var(--gradient-primary); }
.stat-card.stat-emerald::before { background: var(--success); }
.stat-card.stat-blue::before { background: var(--info); }

.stat-card .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.stat-card.stat-purple .stat-icon { background: rgba(109, 40, 217, 0.1); color: var(--primary); }
.stat-card.stat-emerald .stat-icon { background: var(--success-light); color: var(--success); }
.stat-card.stat-blue .stat-icon { background: var(--info-light); color: var(--info); }

.stat-card .stat-icon i {
    font-size: 18px;
}

.stat-data {
    margin-bottom: 8px;
}

.stat-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

.stat-text {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 20px;
}

.stat-badge.up {
    background: var(--success-light);
    color: var(--success);
}

.preview-chart {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 16px;
    border: 1px solid var(--border-light);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.chart-legend {
    display: flex;
    gap: 16px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.purple { background: var(--primary); }
.legend-dot.gray { background: var(--border-color); }

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 100px;
    gap: 8px;
}

.chart-bar-group {
    flex: 1;
    display: flex;
    gap: 4px;
    align-items: flex-end;
    position: relative;
    padding-bottom: 24px;
}

.chart-bar-group .bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    transition: height 0.5s ease;
}

.bar.bar-primary { background: var(--gradient-primary); }
.bar.bar-secondary { background: var(--border-color); }

.bar-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    animation: floatCard 4s ease-in-out infinite;
    z-index: 10;
}

.floating-card.float-1 {
    top: 5%;
    right: -5%;
    animation-delay: 0s;
}

.floating-card.float-2 {
    bottom: 35%;
    left: -15%;
    animation-delay: 1.5s;
}

.floating-card.float-3 {
    bottom: 8%;
    right: 0%;
    animation-delay: 3s;
}

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

.float-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-icon.success { background: var(--success-light); color: var(--success); }
.float-icon.purple { background: rgba(109, 40, 217, 0.1); color: var(--primary); }
.float-icon.warning { background: var(--warning-light); color: var(--warning); }

.float-icon i {
    font-size: 20px;
}

.float-content .float-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.float-content .float-text {
    font-size: 12px;
    color: var(--text-muted);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    margin: 0 auto 12px;
    position: relative;
}

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

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

.scroll-indicator span {
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   TRUSTED SECTION
   ============================================ */
.trusted-section {
    padding: 60px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.trusted-wrapper {
    text-align: center;
}

.trusted-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}

.trusted-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-muted);
    opacity: 0.6;
    transition: var(--transition);
}

.logo-item:hover {
    opacity: 1;
    color: var(--primary);
}

.logo-item i {
    font-size: 24px;
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section-header {
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-badge {
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-badge.light {
    background: none;
    -webkit-text-fill-color: rgba(255, 255, 255, 0.8);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.section-title.light {
    color: white;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.section-subtitle.light {
    color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    padding: var(--section-py) 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px 28px;
    transition: var(--transition);
}

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

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-primary);
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.feature-list li i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

/* ============================================
   SOLUTIONS SECTION
   ============================================ */
.solutions-section {
    padding: var(--section-py) 0;
    background: var(--bg-light);
}

.solutions-text h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.solutions-text > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.solutions-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.solution-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.solution-item .solution-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.solution-item .solution-icon i {
    font-size: 24px;
    color: white;
}

.solution-item .solution-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.solution-item .solution-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Solutions Visual - Devices */
.solutions-visual {
    padding: 40px;
}

.devices-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}

.device-desktop {
    position: relative;
    z-index: 1;
}

.desktop-frame {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 12px;
    box-shadow: var(--shadow-xl);
}

.desktop-screen {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    width: 380px;
    height: 240px;
    overflow: hidden;
}

.screen-content {
    display: flex;
    height: 100%;
}

.mini-sidebar {
    width: 60px;
    background: var(--bg-white);
    border-right: 1px solid var(--border-color);
    padding: 12px 8px;
}

.mini-sidebar .sidebar-logo {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 8px;
    margin: 0 auto 16px;
}

.mini-sidebar .sidebar-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-sidebar .menu-item {
    height: 32px;
    background: var(--bg-light);
    border-radius: 6px;
}

.mini-sidebar .menu-item.active {
    background: rgba(109, 40, 217, 0.1);
}

.mini-main {
    flex: 1;
    padding: 12px;
}

.mini-main .main-header {
    height: 24px;
    background: var(--bg-white);
    border-radius: 6px;
    margin-bottom: 12px;
}

.mini-main .main-cards {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mini-main .mini-card {
    flex: 1;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 8px;
    opacity: 0.8;
}

.mini-main .main-table {
    height: 80px;
    background: var(--bg-white);
    border-radius: 8px;
}

.desktop-stand {
    width: 80px;
    height: 40px;
    background: var(--border-color);
    margin: 0 auto;
    border-radius: 0 0 8px 8px;
}

/* Mobile Device */
.device-mobile {
    position: absolute;
    right: -20px;
    bottom: -30px;
    z-index: 2;
}

.mobile-frame {
    background: var(--text-dark);
    border-radius: 28px;
    padding: 8px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.mobile-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: var(--text-dark);
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

.mobile-screen {
    background: var(--bg-white);
    border-radius: 20px;
    width: 140px;
    height: 280px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 14px 14px;
    background: var(--gradient-primary);
}

.mobile-title {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.mobile-header i {
    color: white;
    font-size: 14px;
}

.mobile-content {
    flex: 1;
    padding: 10px;
}

.mobile-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 8px;
    border: 1px solid var(--border-color);
}

.mobile-card.active {
    background: rgba(109, 40, 217, 0.08);
    border-color: var(--primary);
}

.mobile-card .card-badge {
    display: inline-block;
    padding: 3px 6px;
    background: var(--success);
    color: white;
    font-size: 8px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 4px;
}

.mobile-card .card-badge.pending {
    background: var(--warning);
}

.mobile-card .card-title {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mobile-card .card-meta {
    font-size: 9px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mobile-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    border-top: 1px solid var(--border-color);
}

.mobile-nav .nav-btn {
    color: var(--text-muted);
    font-size: 16px;
    background: none;
    border: none;
}

.mobile-nav .nav-btn.active {
    color: var(--primary);
}

/* ============================================
   CUSTOMIZATION SECTION
   ============================================ */
.customization-section {
    padding: var(--section-py) 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.customization-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.custom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.custom-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    padding: 28px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.custom-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-6px);
}

.custom-card .custom-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.custom-card .custom-icon i {
    font-size: 28px;
    color: white;
}

.custom-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.custom-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   MOBILE APP SECTION
   ============================================ */
.mobile-app-section {
    padding: var(--section-py) 0;
    background: var(--bg-white);
}

.phone-showcase {
    text-align: center;
}

.phone-device {
    display: inline-block;
}

.phone-frame {
    background: var(--text-dark);
    border-radius: 44px;
    padding: 10px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 26px;
    background: var(--text-dark);
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    background: var(--gradient-primary);
    border-radius: 34px;
    width: 260px;
    height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 24px 40px;
}

.app-splash {
    text-align: center;
    color: white;
}

.app-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.app-icon i {
    font-size: 36px;
    color: white;
}

.app-splash h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.app-splash p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 32px;
}

.app-features {
    text-align: left;
}

.app-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 500;
    color: white;
}

.app-feature i {
    color: rgba(255, 255, 255, 0.9);
}

.app-store-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--text-dark);
    color: white;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-decoration: none;
}

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

.store-btn i {
    font-size: 28px;
}

.store-text .store-small {
    display: block;
    font-size: 10px;
    opacity: 0.7;
}

.store-text .store-name {
    display: block;
    font-size: 16px;
    font-weight: 600;
}

/* Mobile Content */
.mobile-app-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mobile-app-content > p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.mobile-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.mobile-feature-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-feature-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.mobile-feature-item .mf-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.mobile-feature-item .mf-icon i {
    font-size: 20px;
    color: white;
}

.mobile-feature-item .mf-text h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.mobile-feature-item .mf-text p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   LANGUAGE BANNER SECTION
   ============================================ */
.language-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.language-banner {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: var(--shadow-md);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 24px;
}

.banner-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-primary);
    flex-shrink: 0;
}

.banner-icon i {
    font-size: 28px;
    color: white;
}

.banner-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.banner-text p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    max-width: 480px;
}

.banner-flags {
    display: flex;
    gap: 16px;
}

.flag-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.flag-emoji {
    font-size: 32px;
}

.flag-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

/* ============================================
   RATE CARDS SECTION
   ============================================ */
.rate-section {
    padding: var(--section-py) 0;
    background: var(--bg-white);
}

.rate-card-demo {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
}

.rate-card-header {
    background: var(--bg-light);
    padding: 20px 28px;
    border-bottom: 1px solid var(--border-color);
}

.rate-tabs {
    display: flex;
    gap: 12px;
}

.rate-tab {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.rate-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.rate-card-body {
    padding: 32px;
}

.rate-table-wrapper {
    overflow-x: auto;
    margin-bottom: 28px;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
}

.rate-table th,
.rate-table td {
    padding: 16px 20px;
    text-align: left;
}

.rate-table th {
    background: var(--bg-light);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
    border-bottom: 2px solid var(--border-color);
}

.rate-table td {
    border-bottom: 1px solid var(--border-color);
}

.rate-table tbody tr:hover td {
    background: var(--bg-light);
}

.range-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.range-badge.highlight {
    background: var(--gradient-primary);
    color: white;
}

.price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.price.highlight {
    color: var(--primary);
}

.price small {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.after-max-row td {
    background: rgba(109, 40, 217, 0.05);
}

.rate-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.rf-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.rf-item i {
    color: var(--primary);
    font-size: 18px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.stats-card .stats-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.stats-card .stats-icon i {
    font-size: 28px;
    color: white;
}

.stats-card .stats-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1;
}

.stats-card .stats-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--section-py) 0;
    background: var(--bg-white);
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: var(--border-radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-primary-lg);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -100px;
}

.cta-circle.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -50px;
}

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

.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: white;
    color: var(--primary);
    padding: 18px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

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

.btn-cta-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* ============================================
   FOOTER
   ============================================ */
.main-footer {
    background: var(--bg-dark);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand .footer-logo {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-brand .footer-logo i {
    font-size: 24px;
    color: white;
}

.footer-brand .footer-info {
    display: flex;
    flex-direction: column;
}

.footer-brand .footer-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.footer-brand .footer-tagline {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

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

.footer-title {
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 24px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

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

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

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

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

/* ============================================
   LOGIN MODAL
   ============================================ */
.modal-content.login-modal {
    border: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.login-modal-header {
    background: var(--gradient-primary);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
}

.modal-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.modal-brand-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-brand-icon i {
    font-size: 24px;
    color: white;
}

.modal-brand-text .modal-brand-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.modal-brand-text .modal-brand-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.btn-modal-close {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.btn-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.login-modal-body {
    padding: 32px;
    background: var(--bg-white);
}

.login-welcome {
    text-align: center;
    margin-bottom: 28px;
}

.login-welcome h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.login-welcome p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.login-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
}

.login-alert.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 18px;
    z-index: 1;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.password-toggle {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--primary);
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.remember-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-secondary);
}

.remember-check input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.remember-check input:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary);
}

.remember-check input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: 700;
}

.forgot-link {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
    color: var(--primary);
}

.btn-login {
    width: 100%;
    padding: 16px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--border-radius-sm);
    color: white;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

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

.btn-login:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.spinner {
    animation: spin 1s linear infinite;
}

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

.login-modal-footer {
    padding: 20px 32px;
    background: var(--bg-light);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.login-modal-footer p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.login-modal-footer a {
    color: var(--primary);
    font-weight: 600;
}

.login-modal-footer a:hover {
    text-decoration: underline;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1199px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .custom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    :root {
        --section-py: 80px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-visual {
        margin-top: 60px;
    }
    
    .floating-card {
        display: none;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .navbar-actions {
        flex-direction: column;
        gap: 12px;
        padding: 20px 0;
    }
    
    .language-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-content {
        flex-direction: column;
    }
    
    .solutions-text h2,
    .mobile-app-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-py: 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-metrics {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .metric-divider {
        display: none;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid,
    .custom-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-features-grid {
        grid-template-columns: 1fr;
    }
    
    .rate-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 50px 24px;
    }
    
    .cta-content h2 {
        font-size: 26px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .devices-showcase {
        transform: scale(0.75);
    }
    
    .app-store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .trusted-logos {
        gap: 30px;
    }
    
    .banner-flags {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .solutions-text h2,
    .mobile-app-content h2 {
        font-size: 28px;
    }
}

/* ============================================
   RTL SUPPORT
   ============================================ */
[dir="rtl"] .hero-pill {
    flex-direction: row-reverse;
}

[dir="rtl"] .btn-hero-primary i {
    transform: rotate(180deg);
}

[dir="rtl"] .feature-list li {
    flex-direction: row-reverse;
}

[dir="rtl"] .solution-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .mobile-feature-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

[dir="rtl"] .input-icon {
    left: auto;
    right: 16px;
}

[dir="rtl"] .form-input {
    padding-left: 16px;
    padding-right: 50px;
}

[dir="rtl"] .password-toggle {
    right: auto;
    left: 16px;
}

[dir="rtl"] .rf-item {
    flex-direction: row-reverse;
}

/* ============================================
   SCROLLBAR STYLING
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--gradient-primary) !important; }