@import url('./assets/fonts.css');

/* Localization selector styles */
.language-selector {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.language-selector select {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
}

.language-selector select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
}
.language-selector select option {
    color: black;
}
/* Styles from about.html */
        .about-page .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        }
        
        body.about-page.tech-gradient {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
        }
        
        .about-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .about-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: about-float 10s ease-in-out infinite;
            filter: blur(2px);
        }
        
        .about-page .abstract-shape:nth-child(1) {
            width: 250px;
            height: 250px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            top: 15%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .about-page .abstract-shape:nth-child(2) {
            width: 180px;
            height: 180px;
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            top: 70%;
            right: 10%;
            animation-delay: 4s;
        }
        
        .about-page .abstract-shape:nth-child(3) {
            width: 120px;
            height: 120px;
            background: linear-gradient(45deg, #06b6d4, #3b82f6);
            bottom: 30%;
            left: 15%;
            animation-delay: 8s;
        }
        
        @keyframes about-float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-40px) rotate(180deg) scale(1.2); }
        }
        
        .about-page .content-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .about-page .content-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(139, 92, 246, 0.4);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
        }
        
        .about-page .btn-primary {
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
        }
        
        .about-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
        }
        
        .about-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .about-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .about-page .gradient-text {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .about-page .value-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .about-page .value-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-3px);
        }
        
        .about-page .step-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            position: relative;
            overflow: hidden;
        }
        
        .about-page .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
        }
        
        .about-page .timeline-dot {
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
            box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
        }

/* Styles from careers.html */
        .careers-page .gradient-bg {
            background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%);
        }
        
        body.careers-page.tech-gradient {
            background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #2563eb 100%);
        }
        
        .careers-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .careers-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: careers-float 15s ease-in-out infinite;
            filter: blur(3px);
        }
        
        .careers-page .abstract-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #10b981, #06b6d4);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .careers-page .abstract-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #06b6d4, #3b82f6);
            top: 70%;
            right: 8%;
            animation-delay: 5s;
        }
        
        .careers-page .abstract-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #0ea5e9, #10b981);
            bottom: 20%;
            left: 15%;
            animation-delay: 10s;
        }
        
        @keyframes careers-float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-60px) rotate(180deg) scale(1.4); }
        }
        
        .careers-page .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .careers-page .feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(16, 185, 129, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
        }
        
        .careers-page .job-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .careers-page .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #10b981, #06b6d4);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .careers-page .job-card:hover::before {
            transform: scaleX(1);
        }
        
        .careers-page .job-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
        }
        
        .careers-page .btn-primary {
            background: linear-gradient(45deg, #10b981, #06b6d4);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }
        
        .careers-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
            background: linear-gradient(45deg, #059669, #0891b2);
        }
        
        .careers-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .careers-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .careers-page .gradient-text {
            background: linear-gradient(45deg, #10b981, #06b6d4, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .careers-page .career-gradient {
            background: linear-gradient(45deg, #10b981, #06b6d4);
        }
        
        .careers-page .tech-glow {
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
        }
        
        .careers-page .benefit-card {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .careers-page .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #10b981, #06b6d4);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .careers-page .benefit-card:hover::before {
            transform: scaleX(1);
        }
        
        .careers-page .benefit-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(16, 185, 129, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
        }
        
        .careers-page .location-badge {
            background: linear-gradient(45deg, #10b981, #06b6d4);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
        }
        
        .careers-page .skill-tag {
            background: rgba(16, 185, 129, 0.2);
            border: 1px solid rgba(16, 185, 129, 0.3);
            padding: 4px 12px;
            border-radius: 16px;
            font-size: 0.875rem;
            color: #6ee7b7;
        }
        
        .careers-page .form-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .careers-page .form-input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(16, 185, 129, 0.5);
            outline: none;
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
        }
        
        .careers-page .form-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .careers-page .success-message {
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #86efac;
        }
        
        .careers-page .error-message {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #fca5a5;
        }

/* Styles from communication.html */
        .communication-page .gradient-bg {
            background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%);
        }
        
        body.communication-page.tech-gradient {
            background: linear-gradient(135deg, #059669 0%, #0d9488 50%, #0891b2 100%);
        }
        
        .communication-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .communication-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: communication-float 15s ease-in-out infinite;
            filter: blur(3px);
        }
        
        .communication-page .abstract-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #10b981, #3b82f6);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .communication-page .abstract-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            top: 70%;
            right: 8%;
            animation-delay: 5s;
        }
        
        .communication-page .abstract-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #06b6d4, #10b981);
            bottom: 20%;
            left: 15%;
            animation-delay: 10s;
        }
        
        @keyframes communication-float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-60px) rotate(180deg) scale(1.4); }
        }
        
        .communication-page .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .communication-page .feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(16, 185, 129, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
        }
        
        .communication-page .benefit-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .communication-page .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #10b981, #3b82f6);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .communication-page .benefit-card:hover::before {
            transform: scaleX(1);
        }
        
        .communication-page .benefit-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
        }
        
        .communication-page .btn-primary {
            background: linear-gradient(45deg, #10b981, #3b82f6);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }
        
        .communication-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
            background: linear-gradient(45deg, #059669, #2563eb);
        }
        
        .communication-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .communication-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .communication-page .gradient-text {
            background: linear-gradient(45deg, #10b981, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .communication-page .comm-gradient {
            background: linear-gradient(45deg, #10b981, #3b82f6);
        }
        
        .communication-page .tech-glow {
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
        }
        
        .communication-page .process-step {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .communication-page .process-step:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-3px);
        }
        
        .communication-page .step-number {
            background: linear-gradient(45deg, #10b981, #3b82f6);
            box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
        }
        
        .communication-page .channel-card {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .communication-page .channel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #10b981, #3b82f6);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .communication-page .channel-card:hover::before {
            transform: scaleX(1);
        }
        
        .communication-page .channel-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(16, 185, 129, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
        }

/* Styles from contact.html */
        .contact-page .gradient-bg {
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
        }
        
        body.contact-page.tech-gradient {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #db2777 100%);
        }
        
        .contact-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .contact-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: contact-float 15s ease-in-out infinite;
            filter: blur(3px);
        }
        
        .contact-page .abstract-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .contact-page .abstract-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            top: 70%;
            right: 8%;
            animation-delay: 5s;
        }
        
        .contact-page .abstract-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #06b6d4, #6366f1);
            bottom: 20%;
            left: 15%;
            animation-delay: 10s;
        }
        
        @keyframes contact-float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-60px) rotate(180deg) scale(1.4); }
        }
        
        .contact-page .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .contact-page .feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(99, 102, 241, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(99, 102, 241, 0.25);
        }
        
        .contact-page .contact-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .contact-page .contact-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .contact-page .contact-card:hover::before {
            transform: scaleX(1);
        }
        
        .contact-page .contact-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(99, 102, 241, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
        }
        
        .contact-page .btn-primary {
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
        }
        
        .contact-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.6);
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
        }
        
        .contact-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .contact-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .contact-page .gradient-text {
            background: linear-gradient(45deg, #6366f1, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .contact-page .contact-gradient {
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
        }
        
        .contact-page .tech-glow {
            box-shadow: 0 0 30px rgba(99, 102, 241, 0.4);
        }
        
        .contact-page .form-input {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .contact-page .form-input:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(99, 102, 241, 0.5);
            outline: none;
            box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
        }
        
        .contact-page .form-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .contact-page .success-message {
            background: rgba(34, 197, 94, 0.2);
            border: 1px solid rgba(34, 197, 94, 0.3);
            color: #86efac;
        }
        
        .contact-page .error-message {
            background: rgba(239, 68, 68, 0.2);
            border: 1px solid rgba(239, 68, 68, 0.3);
            color: #fca5a5;
        }

/* Styles from features.html */
        .features-page .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        }
        
        body.features-page.tech-gradient {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
        }
        
        .features-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .features-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: features-float 12s ease-in-out infinite;
            filter: blur(3px);
        }
        
        .features-page .abstract-shape:nth-child(1) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            top: 20%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .features-page .abstract-shape:nth-child(2) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            top: 60%;
            right: 10%;
            animation-delay: 4s;
        }
        
        .features-page .abstract-shape:nth-child(3) {
            width: 100px;
            height: 100px;
            background: linear-gradient(45deg, #06b6d4, #3b82f6);
            bottom: 30%;
            left: 20%;
            animation-delay: 8s;
        }
        
        @keyframes features-float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-50px) rotate(180deg) scale(1.3); }
        }
        
        .features-page .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .features-page .feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(139, 92, 246, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(139, 92, 246, 0.25);
        }
        
        .features-page .service-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .features-page .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .features-page .service-card:hover::before {
            transform: scaleX(1);
        }
        
        .features-page .service-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(139, 92, 246, 0.3);
        }
        
        .features-page .btn-primary {
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
        }
        
        .features-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
        }
        
        .features-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .features-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .features-page .gradient-text {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .features-page .icon-gradient {
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
        }
        
        .features-page .tech-glow {
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
        }

/* Styles from identity.html */
        .identity-page .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        }
        
        body.identity-page.tech-gradient {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
        }
        
        .identity-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .identity-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: identity-float 15s ease-in-out infinite;
            filter: blur(3px);
        }
        
        .identity-page .abstract-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .identity-page .abstract-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            top: 70%;
            right: 8%;
            animation-delay: 5s;
        }
        
        .identity-page .abstract-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #06b6d4, #3b82f6);
            bottom: 20%;
            left: 15%;
            animation-delay: 10s;
        }
        
        @keyframes identity-float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-60px) rotate(180deg) scale(1.4); }
        }
        
        .identity-page .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .identity-page .feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(59, 130, 246, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(59, 130, 246, 0.25);
        }
        
        .identity-page .benefit-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .identity-page .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .identity-page .benefit-card:hover::before {
            transform: scaleX(1);
        }
        
        .identity-page .benefit-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
        }
        
        .identity-page .btn-primary {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }
        
        .identity-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
            background: linear-gradient(45deg, #2563eb, #7c3aed);
        }
        
        .identity-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .identity-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .identity-page .gradient-text {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .identity-page .identity-gradient {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
        }
        
        .identity-page .tech-glow {
            box-shadow: 0 0 30px rgba(59, 130, 246, 0.4);
        }
        
        .identity-page .process-step {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .identity-page .process-step:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-3px);
        }
        
        .identity-page .step-number {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
        }

/* Styles from index.html */
        .index-page .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
        }

        body.index-page.tech-gradient {
            background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
        }

        .index-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .index-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
            animation: index-float 8s ease-in-out infinite;
            filter: blur(1px);
        }

        .index-page .abstract-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #3b82f6, #8b5cf6);
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .index-page .abstract-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #8b5cf6, #ec4899);
            top: 60%;
            right: 15%;
            animation-delay: 3s;
        }

        .index-page .abstract-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #06b6d4, #3b82f6);
            bottom: 20%;
            left: 20%;
            animation-delay: 6s;
        }

        @keyframes index-float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg) scale(1);
            }

            .index-page 50% {
                transform: translateY(-30px) rotate(180deg) scale(1.1);
            }
        }

        .index-page .card-hover {
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
        }

        .index-page .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(139, 92, 246, 0.3);
            border-color: rgba(139, 92, 246, 0.5);
            background: rgba(255, 255, 255, 0.1);
        }

        .index-page .btn-primary {
            background: linear-gradient(45deg, #4f46e5, #7c3aed);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(79, 70, 229, 0.4);
        }

        .index-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(79, 70, 229, 0.6);
            background: linear-gradient(45deg, #6366f1, #8b5cf6);
        }

        .index-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .index-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        .index-page .dark-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .index-page .tech-glow {
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
        }

        .index-page .gradient-text {
            background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

/* Styles from privacy.html */
        .privacy-page .gradient-bg {
            background: linear-gradient(135deg, #10b981 0%, #06b6d4 50%, #3b82f6 100%);
        }
        
        body.privacy-page.tech-gradient {
            background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #2563eb 100%);
        }
        
        .privacy-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .privacy-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: privacy-float 15s ease-in-out infinite;
            filter: blur(3px);
        }
        
        .privacy-page .abstract-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #10b981, #06b6d4);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .privacy-page .abstract-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #06b6d4, #3b82f6);
            top: 70%;
            right: 8%;
            animation-delay: 5s;
        }
        
        .privacy-page .abstract-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #0ea5e9, #10b981);
            bottom: 20%;
            left: 15%;
            animation-delay: 10s;
        }
        
        @keyframes privacy-float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-60px) rotate(180deg) scale(1.4); }
        }
        
        .privacy-page .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .privacy-page .feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(16, 185, 129, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(16, 185, 129, 0.25);
        }
        
        .privacy-page .policy-section {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .privacy-page .policy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #10b981, #06b6d4);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .privacy-page .policy-section:hover::before {
            transform: scaleX(1);
        }
        
        .privacy-page .policy-section:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(16, 185, 129, 0.15);
        }
        
        .privacy-page .btn-primary {
            background: linear-gradient(45deg, #10b981, #06b6d4);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }
        
        .privacy-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.6);
            background: linear-gradient(45deg, #059669, #0891b2);
        }
        
        .privacy-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .privacy-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .privacy-page .gradient-text {

        }
        
        .privacy-page .privacy-gradient {
            background: linear-gradient(45deg, #10b981, #06b6d4);
        }
        
        .privacy-page .tech-glow {
            box-shadow: 0 0 30px rgba(16, 185, 129, 0.4);
        }
        
        .privacy-page .highlight-box {
            background: rgba(16, 185, 129, 0.1);
            border: 1px solid rgba(16, 185, 129, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .privacy-page .warning-box {
            background: rgba(245, 158, 11, 0.1);
            border: 1px solid rgba(245, 158, 11, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .privacy-page .info-box {
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 12px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .privacy-page .contact-info {
            background: rgba(16, 185, 129, 0.15);
            border: 2px solid rgba(16, 185, 129, 0.3);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
        }
        
        .privacy-page .toc-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 16px;
            margin: 8px 0;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .privacy-page .toc-item:hover {
            background: rgba(16, 185, 129, 0.1);
            border-color: rgba(16, 185, 129, 0.3);
            transform: translateX(-5px);
        }
        
        .privacy-page .section-content {
            line-height: 1.8;
        }
        
        .privacy-page .section-content h3 {
            color: #6ee7b7;
            margin-top: 24px;
            margin-bottom: 16px;
        }
        
        .privacy-page .section-content ul {
            margin: 16px 0;
            padding-right: 24px;
        }
        
        .privacy-page .section-content li {
            margin: 8px 0;
            position: relative;
        }
        
        .privacy-page .section-content li::before {
            content: '•';
            color: #10b981;
            font-weight: bold;
            position: absolute;
            right: -16px;
        }

/* Styles from storage.html */
        .storage-page .gradient-bg {
            background: linear-gradient(135deg, #f59e0b 0%, #ef4444 50%, #ec4899 100%);
        }
        
        body.storage-page.tech-gradient {
            background: linear-gradient(135deg, #d97706 0%, #dc2626 50%, #be185d 100%);
        }
        
        .storage-page .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .storage-page .abstract-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: storage-float 15s ease-in-out infinite;
            filter: blur(3px);
        }
        
        .storage-page .abstract-shape:nth-child(1) {
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, #f59e0b, #ef4444);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }
        
        .storage-page .abstract-shape:nth-child(2) {
            width: 200px;
            height: 200px;
            background: linear-gradient(45deg, #ef4444, #ec4899);
            top: 70%;
            right: 8%;
            animation-delay: 5s;
        }
        
        .storage-page .abstract-shape:nth-child(3) {
            width: 150px;
            height: 150px;
            background: linear-gradient(45deg, #f97316, #f59e0b);
            bottom: 20%;
            left: 15%;
            animation-delay: 10s;
        }
        
        @keyframes storage-float {
            0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
            50% { transform: translateY(-60px) rotate(180deg) scale(1.4); }
        }
        
        .storage-page .feature-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
        }
        
        .storage-page .feature-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(245, 158, 11, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(245, 158, 11, 0.25);
        }
        
        .storage-page .benefit-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(30px);
            border: 1px solid rgba(255, 255, 255, 0.12);
            transition: all 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .storage-page .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #f59e0b, #ef4444);
            transform: scaleX(0);
            transition: transform 0.5s ease;
        }
        
        .storage-page .benefit-card:hover::before {
            transform: scaleX(1);
        }
        
        .storage-page .benefit-card:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(245, 158, 11, 0.3);
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(245, 158, 11, 0.2);
        }
        
        .storage-page .btn-primary {
            background: linear-gradient(45deg, #f59e0b, #ef4444);
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
        }
        
        .storage-page .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(245, 158, 11, 0.6);
            background: linear-gradient(45deg, #d97706, #dc2626);
        }
        
        .storage-page .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }
        
        .storage-page .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }
        
        .storage-page .gradient-text {
            background: linear-gradient(45deg, #f59e0b, #ef4444, #ec4899);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .storage-page .storage-gradient {
            background: linear-gradient(45deg, #f59e0b, #ef4444);
        }
        
        .storage-page .tech-glow {
            box-shadow: 0 0 30px rgba(245, 158, 11, 0.4);
        }
        
        .storage-page .process-step {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }
        
        .storage-page .process-step:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(245, 158, 11, 0.3);
            transform: translateY(-3px);
        }
        
        .storage-page .step-number {
            background: linear-gradient(45deg, #f59e0b, #ef4444);
            box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
        }
        
        .storage-page .storage-card {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .storage-page .storage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f59e0b, #ef4444);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }
        
        .storage-page .storage-card:hover::before {
            transform: scaleX(1);
        }
        
        .storage-page .storage-card:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(245, 158, 11, 0.4);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(245, 158, 11, 0.25);
        }

