@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a29bfe;
    --accent-color: #00cec9;
    --dark-color: #2d3436;
    --light-color: #f8f9fa;
    --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --gradient-accent: linear-gradient(135deg, #00cec9 0%, #81ecec 100%);
    --shadow-light: 0 10px 40px rgba(108, 92, 231, 0.15);
    --shadow-medium: 0 20px 60px rgba(108, 92, 231, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 1px;
    height: 1px;
}

::-webkit-scrollbar-track {
    background: rgba(26, 26, 46, 0.2);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 1px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #5b4cdb 0%, #8f85f0 100%);
}

/* Firefox Scrollbar */
/* * {
    scrollbar-width: ;
    scrollbar-color: #6c5ce7 rgba(26, 26, 46, 0.2);
} */

body {
    background: #ffffff;
    color: #ffffff;
    line-height: 1.6;
    padding: 20px;
    min-height: 100vh;
    overflow-x: hidden;
}

#particles-js {
    position: fixed;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    z-index: 0;
    border-radius: 25px;
    pointer-events: none;
}

.page-border {
    border: 2px solid rgba(108, 92, 231, 0.5);
    border-radius: 25px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: calc(100vh - 40px);
    position: relative;
}

.highlight {
    color: var(--accent-color);
}

/* Floating Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

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

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

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

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: floatDelayed 5s ease-in-out infinite;
    animation-delay: 1s;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 50%, #00cec9 100%);
    padding: 10px 0;
    position: relative;
    overflow: hidden;
    border-radius: 23px 23px 0 0;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.top-bar-quote {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-style: italic;
}

.top-bar-quote i {
    font-size: 0.8rem;
    opacity: 0.8;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.top-bar-item:hover {
    transform: translateY(-2px);
}

.top-bar-item i {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
    border-radius: 50%;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 5px 30px rgba(108, 92, 231, 0.3);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: 0.3s;
}

/* Nav Auth Buttons */
.nav-auth {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
}

.btn-auth {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
}

.btn-auth:hover,
.btn-auth.active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-auth-outline {
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-auth-outline:hover,
.btn-auth-outline.active {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Mobile Menu Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-light);
}

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-visual {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 100px rgba(108, 92, 231, 0.5);
}

.ai-visual > i {
    font-size: 6rem;
    color: #fff;
}

.orbit {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(162, 155, 254, 0.3);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-2 {
    width: 500px;
    height: 500px;
    animation-duration: 30s;
    animation-direction: reverse;
}

.orbit-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-icon i {
    color: #fff;
    font-size: 1.2rem;
}

/* Section Styles */
.section {
    padding: 100px 60px;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-top: -40px;
    margin-bottom: 50px;
}

/* About Section */
.about-section {
    background: rgba(108, 92, 231, 0.05);
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1.5;
}

.about-text p {
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-card {
    width: 250px;
    height: 250px;
    background: var(--gradient-accent);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-medium);
}

.image-card i {
    font-size: 6rem;
    color: #fff;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.product-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.product-icon i {
    font-size: 2rem;
    color: #fff;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.product-card > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
}

.product-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
}

.product-features li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Careers Section */
.careers-section {
    background: rgba(0, 206, 201, 0.05);
}

.careers-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.career-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.career-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.career-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.career-card h3 {
    margin-bottom: 10px;
}

.career-card p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 15px;
}

.career-tag {
    display: inline-block;
    padding: 5px 15px;
    background: rgba(108, 92, 231, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--secondary-color);
}

.careers-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--dark-color);
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(15, 15, 30, 0.98) 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 60px 40px 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.footer-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(108, 92, 231, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-accent);
}

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

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

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links-list a i {
    font-size: 0.7rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.footer-links-list a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-links-list a:hover i {
    transform: translateX(3px);
}

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

.footer-contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact-list li i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form {
    margin-bottom: 20px;
}

.newsletter-input-wrapper {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(108, 92, 231, 0.3);
    transition: all 0.3s ease;
}

.newsletter-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.2);
}

.newsletter-input-wrapper input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-wrapper button {
    padding: 12px 20px;
    background: var(--gradient-primary);
    border: none;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-input-wrapper button:hover {
    background: var(--gradient-accent);
}

.footer-badges {
    display: flex;
    gap: 15px;
}

.footer-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    background: rgba(0, 206, 201, 0.1);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 0.85rem;
}

.footer-badges .badge i {
    font-size: 0.9rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
}

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

.footer-bottom .copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .ai-visual {
        width: 200px;
        height: 200px;
    }

    .ai-visual > i {
        font-size: 4rem;
    }

    .orbit {
        width: 280px;
        height: 280px;
    }

    .orbit-2 {
        width: 360px;
        height: 360px;
    }

    .about-content {
        flex-direction: column;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 80px 30px;
    }
    
    /* Footer Tablet */
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 50px 30px 40px;
    }
    
    .footer-brand {
        grid-column: span 2;
        text-align: center;
        padding-right: 0;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-description {
        max-width: 500px;
        margin: 0 auto 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-newsletter {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .page-border {
        border-radius: 15px;
        min-height: calc(100vh - 20px);
    }
    
    #particles-js {
        top: 10px;
        left: 10px;
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        border-radius: 15px;
    }

    /* Top Bar Mobile */
    .top-bar {
        border-radius: 13px 13px 0 0;
    }
    
    .top-bar-container {
        flex-direction: column;
        gap: 10px;
        padding: 0 15px;
    }
    
    .top-bar-quote {
        font-size: 0.8rem;
        text-align: center;
    }
    
    .top-bar-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .top-bar-item {
        font-size: 0.75rem;
    }
    
    .top-bar-item i {
        padding: 4px;
        font-size: 0.8rem;
    }

    .nav-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(45, 45, 80, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease;
        z-index: 1001;
        gap: 30px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    
    .nav-link {
        font-size: 1.3rem;
        padding: 10px 30px;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: rgba(108, 92, 231, 0.2);
    }

    .hamburger {
        display: flex;
        z-index: 1002;
    }

    .nav-auth {
        display: none;
    }

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

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

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

    .section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .hero-section {
        padding: 30px 15px;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }
    
    .ai-visual {
        width: 150px;
        height: 150px;
        margin-top: 30px;
    }
    
    .ai-visual > i {
        font-size: 3rem;
    }
    
    .orbit {
        width: 220px;
        height: 220px;
    }
    
    .orbit-2 {
        width: 280px;
        height: 280px;
    }
    
    .orbit-icon {
        width: 35px;
        height: 35px;
    }
    
    .orbit-icon i {
        font-size: 0.9rem;
    }
    
    /* Products cards */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 25px;
    }
    
    /* Career cards */
    .careers-content {
        grid-template-columns: 1fr;
    }
    
    .career-card {
        padding: 25px;
    }
    
    /* Contact section */
    .contact-content {
        gap: 40px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    /* Footer */
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 20px 30px;
        text-align: center;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-logo {
        justify-content: center;
        font-size: 1.3rem;
    }
    
    .footer-logo i {
        font-size: 1.8rem;
    }
    
    .footer-description {
        max-width: 400px;
        margin: 0 auto 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links-list a {
        justify-content: center;
    }
    
    .footer-contact-list li {
        justify-content: center;
        text-align: left;
    }
    
    .footer-badges {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    /* Overview cards */
    .overview-grid {
        grid-template-columns: 1fr;
    }
    
    .overview-card {
        padding: 25px;
    }
    
    /* Stats grid */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 8px;
    }
    
    .page-border {
        border-radius: 12px;
        min-height: calc(100vh - 16px);
    }
    
    #particles-js {
        top: 8px;
        left: 8px;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        border-radius: 12px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   ADDITIONAL STYLES FOR ALL PAGES
   ============================================ */

/* Page Header */
.page-header {
    padding: 80px 60px 40px;
    text-align: center;
    background: rgba(108, 92, 231, 0.05);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Sub Title */
.sub-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Overview Section (Home) */
.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.overview-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.overview-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.overview-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.overview-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.overview-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

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

.cta-section .btn-secondary {
    border-color: #fff;
}

.cta-section .btn-secondary:hover {
    background: #fff;
    color: var(--primary-color);
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-color);
}

.timeline-content h3 {
    color: var(--accent-color);
    margin-bottom: 10px;
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.team-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.team-avatar i {
    font-size: 2.5rem;
    color: #fff;
}

.team-avatar.ai-avatar {
    background: linear-gradient(135deg, #00cec9 0%, #6c5ce7 50%, #a29bfe 100%);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(0, 206, 201, 0.4);
}

.team-avatar.ai-avatar i {
    animation: rotate 10s linear infinite;
}

.team-card h3 {
    margin-bottom: 5px;
}

.team-role {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-bio {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(108, 92, 231, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 206, 201, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.value-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

/* Featured Product */
.featured-product {
    background: rgba(108, 92, 231, 0.05);
}

.featured-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.featured-text {
    flex: 1;
}

.featured-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-accent);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.featured-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.featured-features {
    list-style: none;
    margin-bottom: 30px;
}

.featured-features li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.featured-features li i {
    color: var(--accent-color);
    margin-right: 12px;
}

.featured-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-buttons .btn i {
    margin-right: 8px;
}

.featured-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 250px;
    height: 500px;
    background: linear-gradient(145deg, #2d2d44, #1a1a2e);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Products Detailed Grid */
.products-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.product-detailed-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.3s ease;
}

.product-detailed-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.product-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.product-icon-large {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon-large i {
    font-size: 1.8rem;
    color: #fff;
}

.product-header h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.product-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 206, 201, 0.2);
    color: var(--accent-color);
    border-radius: 15px;
    font-size: 0.8rem;
}

.product-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
}

.product-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.product-features-list li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.product-features-list li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.85rem;
}

.product-pricing {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 15px;
    text-align: center;
}

.price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.price-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 30px;
    text-align: center;
}

.comparison-table th {
    background: rgba(108, 92, 231, 0.2);
    font-weight: 600;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
}

.comparison-table tbody tr {
    border-top: 1px solid rgba(108, 92, 231, 0.1);
}

.comparison-table tbody tr:hover {
    background: rgba(108, 92, 231, 0.05);
}

.comparison-table .fa-check {
    color: var(--accent-color);
}

.comparison-table .fa-times {
    color: rgba(255, 255, 255, 0.3);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-content {
    margin-bottom: 25px;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-avatar i {
    color: #fff;
}

.testimonial-author h4 {
    margin-bottom: 3px;
}

.testimonial-author p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ============================================
   CAREERS PAGE STYLES
   ============================================ */

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.benefit-icon i {
    font-size: 1.8rem;
    color: #fff;
}

.benefit-card h3 {
    margin-bottom: 15px;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Job Filters */
.job-filters {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 30px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* Job Listings */
.job-listings {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.3s ease;
}

.job-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.job-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.job-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.job-meta span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.job-meta span i {
    margin-right: 6px;
    color: var(--accent-color);
}

.job-tag {
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.job-tag.engineering {
    background: rgba(108, 92, 231, 0.2);
    color: var(--secondary-color);
}

.job-tag.design {
    background: rgba(0, 206, 201, 0.2);
    color: var(--accent-color);
}

.job-tag.product {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.job-tag.operations {
    background: rgba(76, 175, 80, 0.2);
    color: #4caf50;
}

.job-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.job-requirements h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--accent-color);
}

.job-requirements ul {
    list-style: none;
    margin-bottom: 25px;
}

.job-requirements li {
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.75);
    padding-left: 20px;
    position: relative;
}

.job-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Culture Section */
.culture-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.culture-text {
    flex: 1.2;
}

.culture-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.culture-values {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.culture-value {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(108, 92, 231, 0.1);
    border-radius: 30px;
}

.culture-value i {
    color: var(--accent-color);
}

.culture-images {
    flex: 0.8;
}

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

.culture-img {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.culture-img i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-detailed h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-intro {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 20px;
}

.method-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 1.3rem;
    color: #fff;
}

.method-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.method-content p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.method-content a,
.method-content address,
.method-content span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-style: normal;
    display: block;
    margin-bottom: 10px;
}

.method-content a:hover {
    color: var(--accent-color);
}

.social-section h3 {
    margin-bottom: 15px;
}

.social-links-large {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link-large:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.social-link-large span {
    font-size: 0.9rem;
}

/* Contact Form Detailed */
.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 25px;
    padding: 45px;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-form-detailed .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-detailed .form-group {
    margin-bottom: 20px;
}

.contact-form-detailed label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.contact-form-detailed input,
.contact-form-detailed select,
.contact-form-detailed textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-detailed input:focus,
.contact-form-detailed select:focus,
.contact-form-detailed textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.05rem;
    font-weight: 500;
}

.faq-question i {
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 25px 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Map Section */
.map-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    overflow: hidden;
}

.map-placeholder {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 206, 201, 0.1));
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-placeholder span {
    color: rgba(255, 255, 255, 0.6);
}

/* Quick Contact Grid */
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

.quick-contact-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
}

.quick-contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.quick-contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.quick-contact-card h3 {
    margin-bottom: 10px;
}

.quick-contact-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ============================================ */

@media (max-width: 992px) {
    .page-header {
        padding: 60px 30px 30px;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .featured-content {
        flex-direction: column;
    }

    .culture-content {
        flex-direction: column;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .products-detailed-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 40px 15px 20px;
    }

    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 25px;
        margin-bottom: 30px;
    }
    
    .timeline-dot {
        left: -31px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .contact-form-detailed .form-row {
        grid-template-columns: 1fr;
    }

    .job-header {
        flex-direction: column;
    }
    
    .job-card {
        padding: 25px;
    }
    
    .job-info h3 {
        font-size: 1.2rem;
    }
    
    .job-meta {
        gap: 10px;
    }
    
    .job-meta span {
        font-size: 0.8rem;
    }

    .culture-image-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .culture-img {
        width: 100%;
        height: 80px;
    }
    
    .culture-values {
        flex-direction: column;
        gap: 15px;
    }
    
    .culture-value {
        padding: 12px 20px;
        justify-content: center;
    }
    
    /* Featured product */
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .featured-description {
        font-size: 1rem;
    }
    
    .featured-buttons {
        flex-direction: column;
    }
    
    .featured-buttons .btn {
        width: 100%;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .phone-screen i {
        font-size: 3rem;
    }
    
    /* Product detailed cards */
    .product-detailed-card {
        padding: 25px;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .product-icon-large {
        margin: 0 auto;
    }
    
    /* Comparison table */
    .comparison-table th,
    .comparison-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    /* Contact page */
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
    }
    
    .method-icon {
        margin: 0 auto;
    }
    
    .social-links-large {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* FAQ */
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 20px 15px;
    }
    
    /* Map */
    .map-placeholder {
        height: 200px;
    }
    
    .map-placeholder i {
        font-size: 2.5rem;
    }
    
    .map-placeholder p {
        font-size: 1.2rem;
    }
    
    /* Benefit cards */
    .benefit-card {
        padding: 25px;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .benefit-icon i {
        font-size: 1.5rem;
    }
    
    /* Job filters */
    .job-filters {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    /* Sub title */
    .sub-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 30px 10px 15px;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .page-subtitle {
        font-size: 0.9rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 15px;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .contact-methods {
        gap: 20px;
    }
    
    .method-content h3 {
        font-size: 1rem;
    }
    
    .social-link-large {
        padding: 8px 14px;
    }
    
    .social-link-large span {
        font-size: 0.8rem;
    }
}