/* ================================
   MODERN SINOP MOBIL - STYLESHEET
   ================================ */

/* CSS Variables - Modern Color Palette */
:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --text-dark: #1a1a2e;
    --text-light: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
    --glow-primary: 0 0 40px rgba(102, 126, 234, 0.3);
    --glow-accent: 0 0 30px rgba(240, 147, 251, 0.4);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Button Animations */
@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 0.6;
    }
    100% {
        transform: scale(4);
        opacity: 0;
    }
}

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

/* Default Cursor - will be overridden by inline CSS on policy pages */

input, textarea, .form-input, .form-textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
    cursor: text !important;
}

a, button, .btn, .nav-link, .lang-toggle, .lang-option {
    cursor: pointer !important;
}

.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.2s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transition: transform 0.25s ease, opacity 0.3s ease;
    transform: translate(-50%, -50%);
}

.custom-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    border-color: var(--accent-color);
    background: rgba(240, 147, 251, 0.2);
}

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

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    position: relative;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

p {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
}

/* ================================
   CONTAINER
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

/* ================================
   PARTICLES BACKGROUND
   ================================ */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, #667eea15 0%, #764ba215 100%);
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.particles::before {
    background: radial-gradient(circle, #667eea 0%, transparent 70%);
    top: -300px;
    left: -300px;
}

.particles::after {
    background: radial-gradient(circle, #764ba2 0%, transparent 70%);
    bottom: -300px;
    right: -300px;
    animation-delay: -10s;
}

/* ================================
   HEADER & NAVIGATION
   ================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    transition: var(--transition-smooth);
    box-shadow: 0 4px 30px rgba(0,0,0,0.03);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.navbar {
    padding: 1.2rem 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.5rem;
    margin: -0.5rem;
}

.nav-brand::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
    opacity: 0;
    transition: var(--transition-fast);
}

.nav-brand:hover {
    transform: translateY(-2px);
}

.nav-brand:hover::before {
    opacity: 1;
}

.logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    object-fit: cover;
    filter: drop-shadow(0 4px 16px rgba(102, 126, 234, 0.5));
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.nav-brand:hover .logo {
    transform: rotate(5deg) scale(1.05);
    filter: drop-shadow(0 6px 24px rgba(102, 126, 234, 0.7));
}

.brand-text {
    font-size: 1.6rem;
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    letter-spacing: -0.5px;
}

@media (max-width: 480px) {
    .brand-text {
        font-size: 1.3rem;
    }
    
    .logo {
        width: 40px;
        height: 40px;
    }
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 14px;
    transition: var(--transition-smooth);
    position: relative;
    font-size: 0.95rem;
    overflow: hidden;
}

/* Background gradient effect */
.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: var(--primary-gradient);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
    transform: scale(0.9);
}

/* Bottom indicator */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover {
    color: white;
    transform: translateY(-2px);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-link:hover::after {
    width: calc(100% - 3rem);
}

/* Active state with animation */
.nav-link.active {
    color: white;
}

.nav-link.active::before {
    opacity: 1;
    transform: scale(1);
    animation: activePulse 2s ease-in-out infinite;
}

.nav-link.active::after {
    width: calc(100% - 3rem);
    box-shadow: 0 2px 12px rgba(102, 126, 234, 0.6);
}

@keyframes activePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(102, 126, 234, 0); }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition-fast);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e9ecf2 100%);
    z-index: -1;
}

.hero-bg-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 50%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

.hero-badge i {
    color: #fbbf24;
}

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

.title-line {
    display: block;
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

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

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.4s both;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease 0.6s both;
}

/* Modern Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 32px;
    border: none;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn i {
    font-size: 1.2rem;
    z-index: 2;
}

.btn span:not(.btn-bg):not(.card-glow):not(.title-line):not(.card-content) {
    z-index: 2;
}

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

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.btn-with-shine {
    position: relative;
    overflow: hidden;
}

.btn-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    animation: fadeInUp 1.4s ease 0.8s both;
}

.stat {
    text-align: center;
    position: relative;
}

.stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 0.8rem;
    background: var(--primary-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-md);
    font-size: 1.2rem;
}

.stat-glow {
    position: relative;
}

.stat-glow::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--primary-gradient);
    border-radius: 20px;
    opacity: 0.2;
    filter: blur(15px);
    z-index: -1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Hero Image Area */
.hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.6s both;
}

.phone-mockup {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.mockup-glow {
    position: absolute;
    inset: -20px;
    background: var(--primary-gradient);
    border-radius: 60px;
    opacity: 0.3;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

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

.phone-frame {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    border-radius: 40px;
    padding: 20px 12px;
    box-shadow: 
        0 20px 60px rgba(0,0,0,0.3),
        inset 0 0 0 3px rgba(255,255,255,0.1);
}

.phone-screen {
    background: var(--bg-white);
    border-radius: 30px;
    aspect-ratio: 9/16;
    overflow: hidden;
    position: relative;
}

.screen-content {
    position: absolute;
    inset: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.animated-element {
    background: var(--primary-gradient);
    border-radius: 16px;
    padding: 1.5rem;
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInLeft 1s ease both;
    box-shadow: var(--shadow-md);
}

.animated-element:nth-child(1) { animation-delay: 1.2s; }
.animated-element:nth-child(2) { animation-delay: 1.4s; }
.animated-element:nth-child(3) { animation-delay: 1.6s; }

.notification-floating {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    background: var(--primary-gradient);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    animation: slideInUp 0.8s ease 2s both, breathe 2s ease-in-out infinite 3s;
    z-index: 10;
}

@keyframes breathe {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 12px 40px rgba(102, 126, 234, 0.8), 0 0 20px rgba(102, 126, 234, 0.4);
    }
}

.notification-floating i {
    font-size: 1.2rem;
    color: white;
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notif-content strong {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.notif-content span {
    font-size: 0.7rem;
    opacity: 0.9;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Floating Cards */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0,0,0,0.1),
        inset 0 0 0 1px rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
    transition: var(--transition-smooth);
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.card-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.floating-card span {
    font-weight: 600;
    color: var(--text-dark);
}

.card-glow {
    position: absolute;
    inset: -5px;
    background: var(--primary-gradient);
    border-radius: 20px;
    opacity: 0;
    filter: blur(20px);
    transition: var(--transition-smooth);
    z-index: -1;
}

.floating-card:hover .card-glow {
    opacity: 0.5;
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.card-1 {
    top: 5%;
    left: -12%;
    animation-delay: 0s;
}

.card-2 {
    top: 40%;
    right: -15%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: -8%;
    animation-delay: 4s;
}

.card-4 {
    top: 65%;
    right: -12%;
    animation-delay: 6s;
}

.card-5 {
    top: 30%;
    left: -10%;
    animation-delay: 8s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeInUp 2s ease 2s both;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    position: relative;
}

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

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ================================
   FEATURES SECTION
   ================================ */
.features {
    padding: 100px 0;
    position: relative;
    background: var(--bg-white);
    z-index: 2;
}

.features-bg-pattern {
    position: absolute;
    inset: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 100px,
            rgba(102, 126, 234, 0.02) 100px,
            rgba(102, 126, 234, 0.02) 200px
        );
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 900;
    color: var(--text-dark);
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.feature-card-modern {
    position: relative;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
    overflow: hidden;
    cursor: pointer;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: var(--primary-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
    transform: translateX(-100%) skewX(-15deg);
    transition: var(--transition-smooth);
}

.feature-card-modern:hover .card-shine {
    transform: translateX(200%) skewX(-15deg);
    transition: transform 0.6s;
}

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

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-md);
}

.feature-card-modern:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--glow-primary);
}

.icon-glow {
    position: absolute;
    inset: -5px;
    background: var(--primary-gradient);
    border-radius: 25px;
    opacity: 0;
    filter: blur(15px);
    transition: var(--transition-smooth);
}

.feature-card-modern:hover .icon-glow {
    opacity: 0.5;
}

.feature-icon i {
    color: white;
    font-size: 1.8rem;
    z-index: 2;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: var(--transition-fast);
}

.feature-card-modern:hover .feature-title {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.feature-link {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: translate(10px, 10px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-card-modern:hover .feature-link {
    transform: translate(0, 0);
    opacity: 1;
}

.feature-link i {
    font-size: 1.2rem;
}

/* ================================
   DOWNLOAD SECTION
   ================================ */
.download {
    padding: 120px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.download::before,
.download::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.download::before {
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    top: -400px;
    left: -400px;
    animation: float 15s ease-in-out infinite;
}

.download::after {
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    bottom: -400px;
    right: -400px;
    animation: float 18s ease-in-out infinite reverse;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.download-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 900;
    text-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.download-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-download {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 16px 28px;
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

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

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

.btn-download:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: rgba(102, 126, 234, 0.5);
}

.btn-download:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-download.ripple::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple 0.6s ease-out;
}

.btn-download i {
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.btn-download:hover i {
    transform: scale(1.2) rotate(5deg);
    animation: pulse 1.5s ease-in-out infinite;
}

.btn-direct {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-direct::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: left 0.6s;
}

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

.btn-direct:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px) scale(1.05);
}

.btn-direct:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.btn-label {
    font-weight: 700;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    position: relative;
    z-index: 1;
}

.btn-download i {
    position: relative;
    z-index: 1;
}

.download-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.info-item i {
    font-size: 1.3rem;
    color: white;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
}

.download-image {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.download-animation {
    position: relative;
    width: 400px;
    height: 550px;
    margin: 0 auto;
}

.phone-mockup-animated {
    width: 280px;
    height: 500px;
    background: linear-gradient(145deg, #1a1a2e 0%, #2a2a3e 100%);
    border-radius: 45px;
    padding: 25px 15px;
    box-shadow: 
        0 25px 70px rgba(0,0,0,0.4),
        inset 0 0 0 3px rgba(255,255,255,0.1);
    position: relative;
    margin: 0 auto;
    animation: floatPhone 6s ease-in-out infinite;
}

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

.phone-screen-animated {
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.screen-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(102, 126, 234, 0.3) 0%,
        rgba(118, 75, 162, 0.3) 100%
    );
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.app-icons {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 180px;
}

.app-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.95);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    animation: fadeInApp calc(0.3s * var(--delay, 0)) ease both;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: var(--transition-fast);
}

.app-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

@keyframes fadeInApp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bouncing-icon {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    animation: bounceDownload 2s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

@keyframes bounceDownload {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

.bouncing-icon i {
    animation: pulseIcon 1.5s ease-in-out infinite;
}

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

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateX(10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

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

.contact-icon i {
    color: white;
    font-size: 1.4rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
}

/* Form Styles */
.form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.form:hover {
    border-color: rgba(102, 126, 234, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 14px;
    font-size: 1rem;
    transition: var(--transition-fast);
    font-family: inherit;
    background: var(--bg-white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1.1rem;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    filter: drop-shadow(0 4px 12px rgba(102, 126, 234, 0.5));
}

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

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

.footer-title {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.footer-list a:hover {
    color: white;
    transform: translateX(5px);
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 2px solid transparent;
}

.social-link:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px) scale(1.1);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

.footer-bottom-links {
    display: flex;
    gap: 2.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

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

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

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1200px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .download-content {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .download-content,
    .contact-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-content {
        text-align: left;
    }
    
    .hero-image {
        order: -1;
        margin-bottom: 3rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .phone-mockup {
        max-width: 300px;
    }
    
    .download-animation {
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-top: 1px solid rgba(0,0,0,0.1);
        padding: 2rem;
        flex-direction: column;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        max-height: 400px;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        text-align: center;
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .btn {
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 100px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Phone Mockup - Mobile */
    .hero-image {
        display: none !important;
    }
    
    .phone-mockup {
        display: none !important;
    }
    
    .floating-card {
        display: none !important;
    }
    
    /* Hero Layout - Mobile */
    .hero-content {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    /* Download Section */
    .download {
        padding: 60px 0;
    }
    
    .download-content {
        gap: 2rem;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 10px;
    }
    
    .btn-download {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        min-width: auto;
    }
    
    .download-info {
        justify-content: center;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .download-image {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .download-animation {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .phone-mockup-animated {
        margin: 0 auto;
        transform: none;
    }
    
    .info-item {
        font-size: 0.9rem;
    }
    
    /* Contact Section */
    .contact {
        padding: 60px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .contact-item:hover {
        transform: none;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .form {
        padding: 2rem 1.5rem;
    }
    
    /* Footer */
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Scroll Indicator */
    .scroll-indicator {
        display: none;
    }
    
    /* Mouse - Hide on mobile */
    .mouse {
        display: none;
    }
    
    /* Language Switcher - Mobile */
    .language-switcher {
        top: 10px;
        bottom: auto;
        right: 15px;
        z-index: 10000 !important;
        transform: none;
    }
    
    .lang-toggle {
        padding: 10px 16px;
        font-size: 0.85rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }
    
    /* Dark Mode Toggle - Mobile */
    .dark-mode-toggle,
    .back-to-top {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
        bottom: 80px;
    }
    
    .dark-mode-toggle {
        left: 30px;
        bottom: 80px;
    }
    
    .back-to-top {
        right: 30px;
        bottom: 80px;
    }
    
    /* Ensure minimum touch target size (44px) */
    .nav-link,
    .btn,
    .dark-mode-toggle,
    .back-to-top {
        min-height: 44px;
    }
    
    .nav-toggle {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for touch */
    .nav-menu {
        padding: 1.5rem;
        gap: 0.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-badge {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        margin-bottom: 2rem;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 0.9rem;
        border-radius: 12px;
    }
    
    .hero-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .stat {
        min-width: 90px;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Phone Mockup - Small Mobile */
    .phone-mockup {
        max-width: 240px;
    }
    
    .phone-frame {
        padding: 15px 10px;
        border-radius: 35px;
    }
    
    .phone-screen {
        border-radius: 25px;
    }
    
    .mockup-glow {
        inset: -15px;
        filter: blur(30px);
    }
    
    /* Features Section */
    .features {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-badge {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card-modern {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .feature-description {
        font-size: 0.95rem;
    }
    
    /* Download Section */
    .download {
        padding: 50px 0;
    }
    
    .download-title {
        font-size: 1.75rem;
    }
    
    .download-description {
        font-size: 1rem;
    }
    
    .download-info {
        gap: 1rem;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
    
    .info-item i {
        font-size: 1.1rem;
    }
    
    .download-animation {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }
    
    .phone-mockup-animated {
        margin: 0 auto;
    }
    
    .download-buttons {
        width: 100%;
        padding: 0 10px;
    }
    
    .btn-download {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
        min-width: auto;
    }
    
    /* Contact Section */
    .contact {
        padding: 50px 0;
    }
    
    .contact-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .form {
        padding: 1.5rem 1rem;
    }
    
    .form-input,
    .form-textarea {
        padding: 14px 18px;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-logo {
        width: 45px;
        height: 45px;
    }
    
    .footer-description {
        font-size: 0.95rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
    }
    
    /* Utility Buttons */
    .dark-mode-toggle,
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        bottom: 70px;
    }
    
    .dark-mode-toggle {
        left: 20px;
        bottom: 70px;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 70px;
    }
    
    .language-switcher {
        top: 8px;
        right: 10px;
        transform: none;
        z-index: 10000 !important;
    }
    
    .lang-toggle {
        padding: 8px 12px;
        font-size: 0.8rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    }
    
    .current-lang {
        display: none;
    }
    
    /* Hide mouse on small mobile */
    .mouse {
        display: none;
    }
    
    /* Sections */
    .section-header {
        margin-bottom: 2.5rem;
    }
}

/* Extra Small Devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .phone-mockup {
        max-width: 200px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .nav-brand {
        gap: 0.5rem;
    }
}

/* Landscape Orientation - Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-stats {
        gap: 1rem;
    }
}

/* Tablet Specific Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
    
    .download-content {
        grid-template-columns: 1.2fr 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1.1fr 1.2fr;
        gap: 3rem;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-gradient {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-glow {
    box-shadow: var(--glow-primary);
}


/* ================================
   BACK TO TOP BUTTON
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(100px) scale(0.5);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

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

.back-to-top i {
    font-size: 1.3rem;
}

/* ================================
   LANGUAGE SWITCHER
   ================================ */
.language-switcher {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(102, 126, 234, 0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 600;
    color: var(--text-dark);
        font-size: 0.9rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 1);
    border-color: var(--primary-color);
    transform: translateX(-5px) scale(1.05);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.lang-toggle i:first-child {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.current-lang {
    font-weight: 700;
    min-width: 35px;
    text-align: center;
}

.lang-toggle i:last-child {
    font-size: 0.8rem;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.lang-toggle.active i:last-child {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 0.5rem;
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
    pointer-events: none;
    transition: var(--transition-smooth);
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.lang-dropdown.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition-fast);
    margin-bottom: 0.3rem;
    position: relative;
}

.lang-option:last-child {
    margin-bottom: 0;
}

.lang-option:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(-5px);
}

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

.lang-option.active .flag {
    filter: none;
}

.flag {
    font-size: 1.5rem;
    display: inline-block;
    filter: grayscale(100%) opacity(0.6);
    transition: var(--transition-fast);
}

.lang-option:hover .flag {
    filter: none;
}

.lang-name {
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Language Switcher - Updated in main media queries */

/* ================================
   LOADING SCREEN
   ================================ */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow: hidden;
}

.loading-particles {
    position: absolute;
    inset: 0;
}

.loading-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 8s ease-in-out infinite;
}

.loading-particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; }
.loading-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 1.5s; }
.loading-particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 3s; }
.loading-particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 4.5s; }
.loading-particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 6s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(50px) scale(1.5);
        opacity: 1;
    }
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.logo-wrapper-modern {
    margin-bottom: 3rem;
}

.logo-spinner {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-spinner i {
    font-size: 3.5rem;
    color: white;
    position: relative;
    z-index: 3;
    animation: spin 2s linear infinite;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.5));
}

.logo-glow-ring {
    position: absolute;
    inset: -10px;
    border: 3px solid white;
    border-radius: 50%;
    opacity: 0.3;
    animation: pulseRing 2s ease-in-out infinite;
}

.logo-pulse {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
    border-radius: 50%;
    animation: pulseExpansion 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

@keyframes pulseExpansion {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}

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

.loading-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.text-animate {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

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

.loading-dots span {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(1) { animation-delay: 0s; }
.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0%, 80%, 100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.loading-bar-wrapper {
    width: 300px;
    margin: 0 auto;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.loading-progress {
    height: 100%;
    background: white;
    border-radius: 10px;
    animation: loadingProgress 2s ease-in-out;
    position: relative;
}

.loading-progress-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    animation: loadingShine 1.5s infinite;
}

@keyframes loadingShine {
    0% { transform: translateX(-100%) skewX(-20deg); }
    100% { transform: translateX(200%) skewX(-20deg); }
}

.loading-percentage {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0.9;
    text-align: center;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

/* ================================
   SCROLL PROGRESS BAR
   ================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(102, 126, 234, 0.1);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scroll-progress.show {
    opacity: 1;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 0%;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* ================================
   DARK MODE TOGGLE
   ================================ */
.dark-mode-toggle {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 55px;
    height: 55px;
    background: var(--primary-gradient);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 1000;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-mode-toggle:hover {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.dark-mode-toggle .fa-sun {
    display: none;
}

body.dark-mode .dark-mode-toggle .fa-moon {
    display: none;
}

body.dark-mode .dark-mode-toggle .fa-sun {
    display: block !important;
}

/* Dark Mode Styles */
body.dark-mode {
    background: #0f0f1e;
    color: #e0e0e0;
}

body.dark-mode .header {
    background: rgba(15, 15, 30, 0.95);
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

body.dark-mode .header.scrolled {
    background: rgba(15, 15, 30, 0.98);
    box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

body.dark-mode .nav-link {
    color: #b0b0b0;
}

body.dark-mode .nav-brand,
body.dark-mode .brand-text,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode .section-title,
body.dark-mode .contact-details h3,
body.dark-mode .section-badge,
body.dark-mode .section-description {
    color: #e0e0e0;
}

body.dark-mode .hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a1a3e 100%);
}

body.dark-mode .hero-bg-gradient {
    background: linear-gradient(135deg, #1a1a2e 0%, #2a1a3e 100%);
}

body.dark-mode .hero-badge {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .features {
    background: #0f0f1e;
}

body.dark-mode .feature-card-modern {
    background: #1a1a2e;
    border-color: rgba(102, 126, 234, 0.2);
    color: #e0e0e0;
}

body.dark-mode .feature-title {
    color: #e0e0e0;
}

body.dark-mode .download {
    background: var(--primary-gradient);
}

body.dark-mode .contact {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1e 100%);
}

body.dark-mode .form {
    background: #252540;
}

body.dark-mode .form-input,
body.dark-mode .form-textarea {
    background: #1a1a2e;
    border-color: rgba(102, 126, 234, 0.2);
    color: #e0e0e0;
}

body.dark-mode .form-input::placeholder,
body.dark-mode .form-textarea::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

body.dark-mode .stat-label,
body.dark-mode p,
body.dark-mode .section-description,
body.dark-mode .contact-details p,
body.dark-mode .feature-description {
    color: #b0b0b0;
}

body.dark-mode .contact-item {
    background: #1a1a2e;
    border-color: rgba(102, 126, 234, 0.2);
    color: #e0e0e0;
}

body.dark-mode .contact-item:hover {
    border-color: var(--primary-color);
    background: #252540;
}

body.dark-mode .phone-screen {
    background: #1a1a2e;
}

body.dark-mode .animated-element {
    background: var(--primary-gradient);
}

body.dark-mode .download-animation {
    background: linear-gradient(145deg, #667eea 0%, #764ba2 100%);
}

body.dark-mode .phone-mockup-animated {
    background: linear-gradient(145deg, #1a1a2e 0%, #2a2a3e 100%);
}

body.dark-mode .download-title {
    color: #ffffff;
}

body.dark-mode .download-description {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .info-item {
    color: rgba(255, 255, 255, 0.95);
}

body.dark-mode .info-item i {
    color: #ffffff;
}

/* Form elements in dark mode */
body.dark-mode .form-group {
    background: transparent;
}

body.dark-mode .hero-title {
    color: #ffffff;
}

body.dark-mode .hero-description {
    color: rgba(255, 255, 255, 0.9);
}

body.dark-mode .card-glow {
    opacity: 0.3 !important;
    background: var(--primary-gradient) !important;
    filter: blur(20px) !important;
    z-index: -1 !important;
}

body.dark-mode .floating-card:hover .card-glow {
    opacity: 0.6 !important;
}

body.dark-mode .card-shine {
    background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.4) 50%, transparent 100%) !important;
}

body.dark-mode .feature-card-modern:hover .card-shine {
    background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.4) 50%, transparent 100%) !important;
}

body.dark-mode .btn-glass {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

body.dark-mode .lang-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
    border-color: rgba(102, 126, 234, 0.3);
}

body.dark-mode .lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

body.dark-mode .lang-dropdown {
    background: rgba(30, 30, 50, 0.98);
    border: 2px solid rgba(102, 126, 234, 0.3);
}

body.dark-mode .lang-option {
    color: #e0e0e0;
}

body.dark-mode .lang-option:hover {
    background: rgba(102, 126, 234, 0.2);
    color: #ffffff;
}

body.dark-mode .lang-name {
    color: inherit;
}

body.dark-mode .footer {
    background: linear-gradient(135deg, #0a0a15 0%, #1a1a2e 100%);
}

/* ================================
   BACKGROUND DECORATIONS
   ================================ */
.bg-decoration {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
    opacity: 0.15;
    animation: floatDeco 20s ease-in-out infinite;
}

.decor-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #667eea, transparent);
    top: -300px;
    left: -300px;
}

.decor-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #764ba2, transparent);
    bottom: -250px;
    right: -250px;
    animation-delay: -7s;
}

.decor-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #f093fb, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes floatDeco {
    0%, 100% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(50px, 50px);
    }
    66% {
        transform: translate(-50px, -50px);
    }
}

/* ================================
   reCAPTCHA MODAL
   ================================ */
.recaptcha-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.recaptcha-modal.active {
    opacity: 1;
    visibility: visible;
}

.recaptcha-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.recaptcha-modal-content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 0;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 1;
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.recaptcha-modal.active .recaptcha-modal-content {
    transform: scale(1) translateY(0);
}

.recaptcha-modal-header {
    padding: 24px 28px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.recaptcha-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
}

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

.recaptcha-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.recaptcha-modal-body {
    padding: 28px;
}

.recaptcha-modal-body p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.recaptcha-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 120px;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
}

#recaptcha {
    display: flex;
    justify-content: center;
}

.recaptcha-modal-footer {
    padding: 20px 28px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.recaptcha-modal-footer .btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 12px;
}

.recaptcha-modal-footer .btn i {
    margin-right: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .recaptcha-modal-content {
        width: 95%;
        border-radius: 16px;
    }
    
    .recaptcha-modal-header {
        padding: 20px;
    }
    
    .recaptcha-modal-header h3 {
        font-size: 1.2rem;
    }
    
    .recaptcha-modal-body {
        padding: 20px;
    }
    
    .recaptcha-modal-footer {
        padding: 16px 20px;
        flex-direction: column;
    }
    
    .recaptcha-modal-footer .btn {
        width: 100%;
    }
}

/* Print Styles */
@media print {
    .header,
    .scroll-indicator,
    .particles,
    .floating-card,
    .nav-toggle,
    .cursor-trail,
    .back-to-top,
    .language-switcher,
    .loading-screen,
    .scroll-progress,
    .dark-mode-toggle,
    .recaptcha-modal {
        display: none !important;
    }
}