﻿/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-cyan: #03d9ff;
    --primary-gray: #aaaaaa;
    --light-bg: #ffffff;
    --lighter-bg: #f8f9fb;
    --card-bg: #ffffff;
    --border-color: rgba(3, 217, 255, 0.2);
    --text-primary: #1a1a1a;
    --text-secondary: #5a6472;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Roboto", sans-serif;
    background: var(--lighter-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    /* Fixed header background to be white instead of dark */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

    /* Added animation on scroll */
    .header.scrolled {
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* Added hover animation */
    transition: transform 0.3s ease;
}

    .logo:hover {
        transform: scale(1.05);
    }

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    /* Added pulse animation */
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(3, 217, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(3, 217, 255, 0);
    }
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link::after {
        content: "";
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary-cyan);
        transition: width 0.3s ease;
    }

    .nav-link:hover {
        color: var(--primary-cyan);
        /* Added transform on hover */
        transform: translateY(-2px);
    }

        .nav-link:hover::after {
            width: 100%;
        }

.btn-demo {
    padding: 0.75rem 1.75rem;
    background: var(--primary-cyan);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

    .btn-demo:hover {
        background: #33e0ff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(3, 217, 255, 0.4);
    }

/* Added mobile menu toggle button */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

    .mobile-menu-toggle:hover {
        color: var(--primary-cyan);
    }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-cyan), transparent);
    top: 10%;
    left: 20%;
    animation: float 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #0099cc, transparent);
    bottom: 20%;
    right: 15%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 30px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    /* Added fade-in animation */
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(3, 217, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Added shine animation */
    animation: fadeInUp 1s ease-out 0.2s both, shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        box-shadow: 0 0 10px rgba(3, 217, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(3, 217, 255, 0.6);
    }
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Added staggered animation */
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--primary-cyan);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Added sharper shadows */
    box-shadow: 0 4px 15px rgba(3, 217, 255, 0.2);
    display: inline-block;
    text-decoration: none;
}

    .btn-primary:hover {
        background: #33e0ff;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(3, 217, 255, 0.5);
    }

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

    .btn-secondary:hover {
        border-color: var(--primary-cyan);
        background: rgba(3, 217, 255, 0.08);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(3, 217, 255, 0.15);
    }

.hero-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 1s ease-out 1s both;
}

.stat {
    text-align: center;
    /* Added hover animation */
    transition: transform 0.3s ease;
}

    .stat:hover {
        transform: translateY(-5px);
    }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    /* Added counter animation effect */
    animation: countUp 2s ease-out 1.2s both;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stat-divider {
    width: 1px;
    background: var(--border-color);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    /* Added scroll-triggered animation - handled via JS */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .section-header.visible {
        opacity: 1;
        transform: translateY(0);
    }

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    /* Added scroll animation */
    opacity: 0;
    transform: translateY(30px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
}

    .product-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-cyan), #0099cc, var(--primary-cyan));
        background-size: 200% 100%;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
        animation: shimmer 3s ease-in-out infinite;
    }

    .product-card:hover::before {
        transform: scaleX(1);
        animation: shimmer 2s ease-in-out infinite;
    }

    .product-card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(3, 217, 255, 0.1) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.5s ease;
        pointer-events: none;
    }

    .product-card:hover .product-card-glow {
        opacity: 1;
    }

    .product-card:hover {
        transform: translateY(-12px) scale(1.02);
        border-color: var(--primary-cyan);
        box-shadow: 0 20px 60px rgba(3, 217, 255, 0.3), 0 0 0 1px rgba(3, 217, 255, 0.1);
    }

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.product-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.15), rgba(0, 153, 204, 0.1));
    border: 2px solid rgba(3, 217, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

    .product-icon svg {
        color: var(--primary-cyan);
        transition: all 0.5s ease;
    }

.product-card:hover .product-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.25), rgba(0, 153, 204, 0.2));
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 24px rgba(3, 217, 255, 0.3);
}

    .product-card:hover .product-icon svg {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(3, 217, 255, 0.5));
    }

.product-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.product-card:hover .product-title {
    color: var(--primary-cyan);
    background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
    position: relative;
    z-index: 1;
}

    .product-features li {
        display: flex;
        align-items: center;
        gap: 0.875rem;
        padding: 0.625rem 0;
        color: var(--text-secondary);
        font-size: 0.95rem;
        transition: all 0.3s ease;
        opacity: 0.9;
    }

    .product-card:hover .product-features li {
        opacity: 1;
        transform: translateX(4px);
        color: var(--text-primary);
    }

    .product-card:hover .product-features li:nth-child(1) {
        transition-delay: 0.05s;
    }

    .product-card:hover .product-features li:nth-child(2) {
        transition-delay: 0.1s;
    }

    .product-card:hover .product-features li:nth-child(3) {
        transition-delay: 0.15s;
    }

    .product-card:hover .product-features li:nth-child(4) {
        transition-delay: 0.2s;
    }

    .product-card:hover .product-features li:nth-child(5) {
        transition-delay: 0.25s;
    }

    .product-card:hover .product-features li:nth-child(6) {
        transition-delay: 0.3s;
    }

.feature-check {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.15), rgba(0, 153, 204, 0.1));
    color: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
    border: 1.5px solid rgba(3, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.product-card:hover .feature-check {
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    color: #ffffff;
    border-color: var(--primary-cyan);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(3, 217, 255, 0.4);
}

.btn-product {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: auto;
}

    .btn-product::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-product:hover::before {
        left: 100%;
    }

    .btn-product svg {
        transition: transform 0.4s ease;
    }

    .btn-product:hover {
        background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(3, 217, 255, 0.4), 0 0 0 4px rgba(3, 217, 255, 0.1);
        border-color: transparent;
    }

        .btn-product:hover svg {
            transform: translateX(4px);
        }

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--lighter-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    /* Sharper shadow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    /* Added scroll animation */
    opacity: 0;
    transform: translateY(30px);
}

    .feature-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .feature-card:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(3, 217, 255, 0.2);
    }

.feature-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1;
    /* Added number animation */
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-number {
    transform: scale(1.2);
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(3, 217, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

    .about::before {
        content: "";
        position: absolute;
        top: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(3, 217, 255, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    animation: fadeInLeft 0.8s ease-out;
}

.about-text-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(3, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.about-text:hover .about-text-glow {
    opacity: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.about-paragraph {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.about-values {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.value-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.4s ease;
    background: transparent;
}

    .value-item:hover {
        transform: translateX(8px);
        background: linear-gradient(135deg, rgba(3, 217, 255, 0.05), rgba(0, 153, 204, 0.03));
    }

.value-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.15), rgba(0, 153, 204, 0.1));
    color: var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    border: 2px solid rgba(3, 217, 255, 0.2);
    transition: all 0.4s ease;
}

.value-item:hover .value-icon {
    transform: scale(1.1) rotate(360deg);
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.25), rgba(0, 153, 204, 0.2));
    border-color: var(--primary-cyan);
    box-shadow: 0 4px 12px rgba(3, 217, 255, 0.3);
}

.value-content {
    flex: 1;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.value-item:hover .value-title {
    color: var(--primary-cyan);
}

.value-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.btn-about-learn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    z-index: 1;
    overflow: hidden;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(3, 217, 255, 0.3);
}

    .btn-about-learn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .btn-about-learn:hover::before {
        left: 100%;
    }

    .btn-about-learn svg {
        transition: transform 0.4s ease;
    }

    .btn-about-learn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(3, 217, 255, 0.5);
    }

        .btn-about-learn:hover svg {
            transform: translateX(4px);
        }

.about-stats-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 1;
    transform: translateX(0);
    animation: fadeInRight 0.8s ease-out;
}

.stats-box-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(3, 217, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.about-stats-box:hover .stats-box-glow {
    opacity: 1;
}

    .about-stats-box.visible {
        opacity: 1;
        transform: translateX(0);
    }

    .about-stats-box:hover {
        border-color: var(--primary-cyan);
        box-shadow: 0 20px 60px rgba(3, 217, 255, 0.25), 0 0 0 1px rgba(3, 217, 255, 0.1);
        transform: translateY(-4px);
    }

.stats-box-item {
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 1rem;
    border-radius: 12px;
}

    .stats-box-item:hover {
        transform: translateY(-5px) scale(1.05);
        background: linear-gradient(135deg, rgba(3, 217, 255, 0.05), rgba(0, 153, 204, 0.03));
    }

.stats-box-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.15), rgba(0, 153, 204, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-cyan);
    transition: all 0.4s ease;
    border: 1.5px solid rgba(3, 217, 255, 0.2);
}

.stats-box-item:hover .stats-box-icon {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.25), rgba(0, 153, 204, 0.2));
    border-color: var(--primary-cyan);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(3, 217, 255, 0.3);
}

    .stats-box-icon svg {
        width: 24px;
        height: 24px;
    }

.stats-box-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
    transition: all 0.3s ease;
}

.stats-box-item:hover .stats-box-number {
    transform: scale(1.1);
}

.stats-box-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.stats-box-item:hover .stats-box-label {
    color: var(--text-primary);
}

.stats-box-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), #0099cc, var(--primary-cyan));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    animation: shimmer 3s ease-in-out infinite;
}

.about-stats-box:hover .stats-box-accent-line {
    transform: scaleX(1);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, rgba(3, 217, 255, 0.05) 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    /* Added scroll animation */
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

    .cta-content.visible {
        opacity: 1;
        transform: scale(1);
    }

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: var(--lighter-bg);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Added Footer Contact Info Styles */
.footer-contact {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

    .contact-item i {
        color: var(--primary-cyan);
    }

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 0.75rem;
    }

    .footer-links a {
        color: var(--text-secondary);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: var(--primary-cyan);
            /* Added transform on hover */
            transform: translateX(5px);
            display: inline-block;
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-copyright {
    color: var(--primary-gray);
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.social-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}
    .social-link i {
        width: 20px; /* 👈 same as SVG width */
        height: 20px; /* 👈 same as SVG height */
        font-size: 20px;
    }

    .social-link:hover {
        color: var(--primary-cyan);
        transform: translateY(-3px);
    }

/* Improved mobile responsiveness */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-card {
        padding: 2.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-stats-box {
        padding: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    /* Added responsive styles for new sections */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .countries-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.75rem;
    }

    .country-item,
    .country-card {
        padding: 2.25rem 1.75rem;
    }

    .country-flag-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 1.25rem;
    }

    .country-flag {
        font-size: 3.5rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .client-item,
    .client-card {
        padding: 1rem 0.75rem;
    }

    .client-icon-wrapper {
        width: 45px;
        height: 45px;
        margin-bottom: 0.625rem;
    }

    .client-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }

    .client-logo {
        height: 45px;
    }

    .client-logo img {
        height: 45px;
        max-width: 100px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .features-detail-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Show mobile menu toggle on mobile */
    .mobile-menu-toggle {
        display: block;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

        .nav.active {
            display: flex;
        }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--border-color);
    }

        .nav-link:last-child {
            border-bottom: none;
        }

    .btn-demo {
        margin: 1rem 2rem;
        width: calc(100% - 4rem);
        text-align: center;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

        .hero-buttons button {
            width: 100%;
        }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .about-paragraph {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .about-values {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
        gap: 1.25rem;
    }

    .value-item {
        padding: 0.875rem;
    }

    .value-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .value-title {
        font-size: 1.125rem;
    }

    .value-text {
        font-size: 0.9rem;
    }

    .btn-about-learn {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .about-stats-box {
        grid-template-columns: 1fr;
        padding: 2rem;
        gap: 1.5rem;
    }

    .stats-box-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0.875rem;
    }

        .stats-box-icon svg {
            width: 20px;
            height: 20px;
        }

    .stats-box-number {
        font-size: 2rem;
    }

    .stats-box-label {
        font-size: 0.9rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

        .cta-buttons button {
            width: 100%;
        }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* Added responsive styles for new sections */
    .services-grid,
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .country-item,
    .country-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .country-flag-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 1rem;
    }

    .country-flag {
        font-size: 3rem;
    }

    .country-name {
        font-size: 1.125rem;
        margin-bottom: 0.875rem;
    }

    .country-stats {
        padding: 0.75rem 1rem;
    }

    .country-clients {
        font-size: 0.95rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.875rem;
    }

    .client-item,
    .client-card {
        padding: 0.875rem 0.625rem;
        border-radius: 14px;
    }

    .client-icon-wrapper {
        width: 40px;
        height: 40px;
        margin-bottom: 0.5rem;
    }

    .client-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .client-logo {
        height: 40px;
    }

    .client-logo img {
        height: 40px;
        max-width: 90px;
    }

    .client-name {
        font-size: 0.8rem;
        margin-bottom: 0.375rem;
    }

    .client-location-wrapper {
        padding: 0.25rem 0.5rem;
    }

    .client-location-wrapper svg {
        width: 10px;
        height: 10px;
    }

    .client-location,
    .client-type {
        font-size: 0.7rem;
    }

    .reviews-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }

    .product-detail-title {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .product-detail-cta {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .products-grid {
        gap: 1.5rem;
    }

    .product-card {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .product-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.25rem;
    }

    .product-title {
        font-size: 1.5rem;
        margin-bottom: 0.875rem;
    }

    .product-description {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .product-features {
        margin-bottom: 1.5rem;
    }

        .product-features li {
            font-size: 0.9rem;
            padding: 0.5rem 0;
        }

    .btn-product {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .products-grid {
        gap: 1.25rem;
    }

    .product-card {
        padding: 1.5rem;
        border-radius: 18px;
    }

    .product-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 1rem;
        border-radius: 14px;
    }

    .product-icon svg {
        width: 40px;
        height: 40px;
    }

    .product-title {
        font-size: 1.375rem;
        margin-bottom: 0.75rem;
    }

    .product-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .product-features {
        margin-bottom: 1.25rem;
    }

        .product-features li {
            font-size: 0.875rem;
            padding: 0.45rem 0;
            gap: 0.75rem;
        }

    .feature-check {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }

    .btn-product {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }

    .btn-product svg {
        width: 18px;
        height: 18px;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .countries-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .country-item,
    .country-card {
        padding: 1.75rem 1.25rem;
        border-radius: 18px;
    }

    .country-flag-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .country-flag {
        font-size: 2.5rem;
    }

    .country-name {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }

    .country-stats {
        padding: 0.625rem 0.875rem;
        border-radius: 10px;
    }

    .stat-icon {
        width: 20px;
        height: 20px;
    }

    .country-clients {
        font-size: 0.9rem;
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
    }

    .client-item,
    .client-card {
        padding: 0.75rem 0.5rem;
        border-radius: 12px;
    }

    .client-icon-wrapper {
        width: 36px;
        height: 36px;
        margin-bottom: 0.5rem;
    }

    .client-icon {
        width: 36px;
        height: 36px;
        font-size: 1.125rem;
        border-radius: 50%;
    }

    .client-logo {
        height: 36px;
    }

    .client-logo img {
        height: 36px;
        max-width: 80px;
        border-radius: 0;
    }

    .client-name {
        font-size: 0.75rem;
        margin-bottom: 0.375rem;
    }

    .client-location-wrapper {
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
    }

    .client-location-wrapper svg {
        width: 10px;
        height: 10px;
    }

    .client-location,
    .client-type {
        font-size: 0.65rem;
    }
}

    .feature-card {
        padding: 2rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
}

/* Added complete styles for Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
}

    .service-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .service-card:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(3, 217, 255, 0.2);
    }

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}
.service-icon i {
    font-size:35px;
}

.service-card:hover .service-icon {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Added styles for Global Presence Section */
.international,
.global-presence {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--lighter-bg) 0%, rgba(3, 217, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

    .international::before,
    .global-presence::before {
        content: "";
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(3, 217, 255, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.country-item,
.country-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border: 1.5px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(3, 217, 255, 0);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .country-item.visible,
    .country-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .country-card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(3, 217, 255, 0.15) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.6s ease;
        pointer-events: none;
    }

    .country-item:hover .country-card-glow,
    .country-card:hover .country-card-glow {
        opacity: 1;
    }

    .country-item:hover,
    .country-card:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 20px 60px rgba(3, 217, 255, 0.25), 0 0 0 1px rgba(3, 217, 255, 0.1);
        background: linear-gradient(135deg, #ffffff 0%, rgba(3, 217, 255, 0.03) 100%);
    }

.country-flag-wrapper {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
}

.country-flag {
    font-size: 4rem;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.country-item:hover .country-flag,
.country-card:hover .country-flag {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(3, 217, 255, 0.3));
}

.flag-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: 3;
    border-radius: 50%;
}

.country-item:hover .flag-shine,
.country-card:hover .flag-shine {
    left: 100%;
}

.country-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.country-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.country-item:hover .country-name,
.country-card:hover .country-name {
    color: var(--primary-cyan);
    background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.country-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.08), rgba(0, 153, 204, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(3, 217, 255, 0.15);
    transition: all 0.4s ease;
}

.country-item:hover .country-stats,
.country-card:hover .country-stats {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.15), rgba(0, 153, 204, 0.1));
    border-color: rgba(3, 217, 255, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(3, 217, 255, 0.2);
}

.stat-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

.country-item:hover .stat-icon,
.country-card:hover .stat-icon {
    transform: scale(1.15) rotate(5deg);
    color: var(--primary-cyan);
}

    .stat-icon svg {
        width: 100%;
        height: 100%;
    }

.country-clients {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    transition: color 0.3s ease;
}

.country-item:hover .country-clients,
.country-card:hover .country-clients {
    color: var(--primary-cyan);
}

.country-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), #0099cc, var(--primary-cyan));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    animation: shimmer 3s ease-in-out infinite;
}

.country-item:hover .country-accent-line,
.country-card:hover .country-accent-line {
    transform: scaleX(1);
    animation: shimmer 2s ease-in-out infinite;
}

/* Added styles for Top Clients Section */
.clients {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, rgba(3, 217, 255, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

    .clients::before {
        content: "";
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(3, 217, 255, 0.08) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.client-item,
.client-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
    border: 1.5px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 0 0 rgba(3, 217, 255, 0);
    opacity: 1;
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out;
}

    .client-item.visible,
    .client-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .client-card-glow {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(3, 217, 255, 0.15) 0%, transparent 70%);
        opacity: 0;
        transition: opacity 0.6s ease;
        pointer-events: none;
    }

    .client-item:hover .client-card-glow,
    .client-card:hover .client-card-glow {
        opacity: 1;
    }

    .client-item:hover,
    .client-card:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 8px 24px rgba(3, 217, 255, 0.25), 0 0 0 1px rgba(3, 217, 255, 0.1);
        background: linear-gradient(135deg, #ffffff 0%, rgba(3, 217, 255, 0.03) 100%);
    }

.client-icon-wrapper {
    position: relative;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.client-icon {
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.15), rgba(0, 153, 204, 0.1));
    border-radius: 50%;
    border: 1.5px solid rgba(3, 217, 255, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    background: none;
    border: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.client-logo img {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    border-radius: 0;
}

.client-item:hover .client-icon,
.client-card:hover .client-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.25), rgba(0, 153, 204, 0.2));
    border-color: var(--primary-cyan);
    box-shadow: 0 4px 12px rgba(3, 217, 255, 0.3);
    filter: drop-shadow(0 4px 8px rgba(3, 217, 255, 0.3));
}

.client-item:hover .client-logo,
.client-card:hover .client-logo {
    transform: scale(1.1);
}

.icon-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.6s ease;
    z-index: 3;
    border-radius: 50%;
}

.client-item:hover .icon-shine,
.client-card:hover .icon-shine {
    left: 100%;
}

.client-content {
    width: 100%;
    position: relative;
    z-index: 1;
}

.client-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.client-item:hover .client-name,
.client-card:hover .client-name {
    color: var(--primary-cyan);
    background: linear-gradient(135deg, var(--text-primary), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.client-location-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.375rem 0.625rem;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.08), rgba(0, 153, 204, 0.05));
    border-radius: 8px;
    border: 1px solid rgba(3, 217, 255, 0.15);
    transition: all 0.4s ease;
}

.client-item:hover .client-location-wrapper,
.client-card:hover .client-location-wrapper {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.15), rgba(0, 153, 204, 0.1));
    border-color: rgba(3, 217, 255, 0.3);
    transform: scale(1.03);
    box-shadow: 0 2px 8px rgba(3, 217, 255, 0.2);
}

.client-location-wrapper svg {
    width: 12px;
    height: 12px;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.client-item:hover .client-location-wrapper svg,
.client-card:hover .client-location-wrapper svg {
    transform: scale(1.15);
    color: var(--primary-cyan);
}

.client-location,
.client-type {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.client-item:hover .client-location,
.client-item:hover .client-type,
.client-card:hover .client-location,
.client-card:hover .client-type {
    color: var(--text-primary);
}

.client-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), #0099cc, var(--primary-cyan));
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
    animation: shimmer 3s ease-in-out infinite;
}

.client-item:hover .client-accent-line,
.client-card:hover .client-accent-line {
    transform: scaleX(1);
    animation: shimmer 2s ease-in-out infinite;
}

/* Added styles for Reviews Section */
.reviews {
    padding: 6rem 0;
    background: var(--lighter-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
}

    .review-card.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .review-card:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(3, 217, 255, 0.2);
    }

.review-stars {
    color: #ffa500;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(3, 217, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary-cyan);
}

.author-name {
    font-weight: 700;
    color: var(--text-primary);
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Added complete styles for Contact Page */
.contact-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--lighter-bg) 0%, rgba(3, 217, 255, 0.08) 100%);
    border-bottom: 1px solid var(--border-color);
}

.contact-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

    .form-group label {
        font-weight: 600;
        color: var(--text-primary);
        font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1.125rem;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        font-size: 1rem;
        font-family: inherit;
        transition: all 0.3s ease;
        background: var(--light-bg);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-cyan);
            box-shadow: 0 0 0 3px rgba(3, 217, 255, 0.1);
        }

.btn-submit {
    padding: 1rem 2rem;
    background: var(--primary-cyan);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 217, 255, 0.2);
}

    .btn-submit:hover {
        background: #33e0ff;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(3, 217, 255, 0.5);
    }

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

    .contact-info-item:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(3, 217, 255, 0.15);
    }

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    flex-shrink: 0;
}

.info-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.info-value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.contact-social {
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

    .contact-social h4 {
        font-size: 1.125rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-cyan);
    transition: all 0.3s ease;
}

    .social-icon:hover {
        background: var(--primary-cyan);
        color: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(3, 217, 255, 0.3);
    }

/* Added complete styles for Product Details Page */
.product-detail-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

    .product-detail-hero::before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(3, 217, 255, 0.15), transparent);
        border-radius: 50%;
        filter: blur(80px);
    }

.product-detail-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    /* Added fade-in animation */
    animation: fadeInUp 1s ease-out;
}

.product-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(3, 217, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* Added shine animation */
    animation: fadeInUp 1s ease-out 0.2s both, shine 3s ease-in-out infinite;
}

.product-detail-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Added staggered animation */
    animation: fadeInUp 1s ease-out 0.4s both;
}

.product-detail-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.product-detail-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.detail-stat {
    text-align: center;
    /* Added hover animation */
    transition: transform 0.3s ease;
}

    .detail-stat:hover {
        transform: translateY(-5px);
    }

.detail-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    /* Added counter animation effect */
    animation: countUp 2s ease-out 1s both;
}

.detail-stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.product-detail-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.product-features-detail {
    padding: 6rem 0;
    background: var(--light-bg);
}

.features-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

    .feature-card:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(3, 217, 255, 0.2);
    }

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.feature-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-card-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.product-benefits {
    padding: 6rem 0;
    background: var(--lighter-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

    .benefit-card:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(3, 217, 255, 0.2);
    }

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Technical Specifications */
.technical-specs {
    padding: 6rem 0;
    background: var(--lighter-bg);
}

.specs-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.spec-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

    .spec-card:hover {
        border-color: var(--primary-cyan);
        transform: translateY(-5px);
        box-shadow: 0 15px 35px rgba(3, 217, 255, 0.2);
    }

.spec-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.spec-value {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--light-bg);
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .faq-item:hover {
        border-color: var(--primary-cyan);
        box-shadow: 0 8px 25px rgba(3, 217, 255, 0.15);
    }

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

    .faq-question:hover {
        color: var(--primary-cyan);
    }

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Demo Form Section */
.demo-form-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--lighter-bg) 0%, rgba(3, 217, 255, 0.05) 100%);
}

.demo-form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-form-content {
    padding-right: 2rem;
}

.demo-form-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-form-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

    .form-group label {
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--text-primary);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        border: 2px solid var(--border-color);
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: var(--light-bg);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-cyan);
            box-shadow: 0 0 0 3px rgba(3, 217, 255, 0.1);
        }

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1.5;
}

    .checkbox-label input[type="checkbox"] {
        margin-top: 0.25rem;
        width: auto;
        flex-shrink: 0;
    }

.btn-full {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.125rem;
}

.demo-form-image {
    text-align: center;
}

    .demo-form-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

.demo-placeholder {
    padding: 3rem;
    background: var(--card-bg);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    text-align: center;
    color: var(--text-secondary);
}

    .demo-placeholder svg {
        margin-bottom: 1rem;
        opacity: 0.5;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .demo-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .demo-form-content {
        padding-right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .features-card-grid {
        grid-template-columns: 1fr;
    }

    .specs-card-grid {
        grid-template-columns: 1fr;
    }
}
/* Page Hero Sections */
.page-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.page-hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(3, 217, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--primary-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.page-hero-cta .page-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Breadcrumb Navigation */
.page-hero-breadcrumb {
    text-align: left;
}

.page-hero-breadcrumb .page-hero-content {
    text-align: left;
}

.page-hero-breadcrumb .page-hero-title {
    text-align: left;
}

.page-hero-breadcrumb .page-hero-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.page-hero-breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    flex-wrap: wrap;
}

.breadcrumb-item {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item:hover {
    color: var(--primary-cyan);
}

.breadcrumb-active {
    color: var(--text-primary);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--text-secondary);
    margin: 0 0.25rem;
}

/* Responsive Styles for Page Hero */
@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 3rem;
        min-height: 40vh;
    }

    .page-hero-title {
        font-size: 2.5rem;
    }

    .page-hero-subtitle {
        font-size: 1.125rem;
    }

    .page-hero-cta .page-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .page-hero-cta .page-hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .page-hero-breadcrumb {
        text-align: center;
    }

    .page-hero-breadcrumb .page-hero-content,
    .page-hero-breadcrumb .page-hero-title,
    .page-hero-breadcrumb .page-hero-subtitle {
        text-align: center;
    }

    .page-hero-breadcrumb .page-hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }
}

.bi {
    font-size: 20px;
}

.bi-fill {
    font-weight: normal;
}

/* Services Page Styles */
.services-page {
    padding: 4rem 0;
    background: var(--lighter-bg);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.services-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.services-intro-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
}

.service-card-detailed {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card-detailed::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), #0099cc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-detailed:hover::before {
    transform: scaleX(1);
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(3, 217, 255, 0.25);
}

.service-card-icon-wrapper {
    width: 70px;
    height: 70px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.service-card-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.service-card-detailed:hover .service-card-icon-wrapper {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-card-features li i {
    color: var(--primary-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.services-process {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin-bottom: 6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.services-process-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(3, 217, 255, 0.3);
}

.process-step-icon {
    width: 80px;
    height: 80px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.process-step-icon i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.process-step:hover .process-step-icon {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.1);
}

.process-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.process-step-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.process-step-connector {
    color: var(--primary-cyan);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.services-cta {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}

.services-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-icon {
    font-size: 3.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.services-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.services-cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.services-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Consultation CTA Section */
.consultation-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.08), rgba(0, 153, 204, 0.12));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.consultation-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.consultation-cta-icon {
    font-size: 4rem;
    color: var(--primary-cyan);
    margin-bottom: 2rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.consultation-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.consultation-cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.consultation-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.consultation-cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.consultation-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.consultation-feature-item i {
    color: var(--primary-cyan);
    font-size: 1.25rem;
}

/* About Us Page Styles */
.about-page {
    padding: 4rem 0;
    background: var(--lighter-bg);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
}

.about-intro-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-intro-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-mission {
    margin-bottom: 6rem;
}

.about-mission-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.about-mission-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-mission-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-mission-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.mission-image-placeholder i {
    font-size: 6rem;
    color: var(--primary-cyan);
}

.about-values {
    margin-bottom: 6rem;
}

.about-values-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(3, 217, 255, 0.25);
}

.value-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.value-card-icon i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
}

.value-card:hover .value-card-icon {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.value-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-stats {
    margin-bottom: 6rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-stat-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.about-stat-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(3, 217, 255, 0.25);
}

.about-stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.about-stat-icon i {
    font-size: 1.75rem;
    color: var(--primary-cyan);
}

.about-stat-item:hover .about-stat-icon {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.1);
}

.about-stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

.about-timeline {
    margin-bottom: 6rem;
}

.about-timeline-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border: 3px solid var(--primary-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(3, 217, 255, 0.3);
    transition: all 0.4s ease;
}

.timeline-marker i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(3, 217, 255, 0.5);
}

.timeline-content {
    flex: 1;
    margin: 0 3rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    border-color: var(--primary-cyan);
    box-shadow: 0 8px 25px rgba(3, 217, 255, 0.2);
    transform: translateY(-5px);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.timeline-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

.about-cta {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
}

.about-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-cta-icon {
    font-size: 3.5rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    display: inline-block;
}

.about-cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for Services and About Pages */
@media (max-width: 1024px) {
    .services-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-mission-content {
        grid-template-columns: 1fr;
    }

    .about-mission-image {
        order: -1;
    }

    .process-steps {
        flex-direction: column;
    }

    .process-step-connector {
        transform: rotate(90deg);
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: row !important;
        padding-left: 5rem;
    }

    .timeline-item .timeline-content {
        text-align: left !important;
    }
}

@media (max-width: 768px) {
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-intro-title,
    .about-intro-title,
    .services-process-title,
    .about-values-title,
    .about-timeline-title {
        font-size: 2rem;
    }

    .about-mission-content {
        padding: 2rem;
    }

    .mission-image-placeholder {
        width: 200px;
        height: 200px;
    }

    .mission-image-placeholder i {
        font-size: 4rem;
    }

    .services-cta-buttons,
    .about-cta-buttons,
    .consultation-cta-buttons {
        flex-direction: column;
    }

    .consultation-cta-title {
        font-size: 2rem;
    }

    .consultation-cta-icon {
        font-size: 3rem;
    }

    .consultation-cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .services-cta-buttons a,
    .about-cta-buttons a,
    .consultation-cta-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        padding-left: 4rem;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .timeline-marker i {
        font-size: 1.5rem;
    }

    .timeline-content {
        margin: 0 1.5rem;
        padding: 1.5rem;
    }
}

.no-list-padding ol,
.no-list-padding ul {
    padding-left: 0;
}

/* Legal Pages Styles */
.legal-page {
    padding: 8rem 0 4rem;
    background: var(--lighter-bg);
    min-height: 100vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.legal-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.legal-last-updated {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.legal-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-subsection-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.legal-list {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 0;
}

.legal-list li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    color: var(--text-primary);
    list-style-type: disc;
}

.legal-list li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-acknowledgment {
    margin-top: 3rem;
    padding: 1.5rem;
    background: var(--lighter-bg);
    border-left: 4px solid var(--primary-cyan);
    border-radius: 8px;
}

.legal-acknowledgment p {
    margin: 0;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.legal-content a {
    color: var(--primary-cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #0099cc;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .legal-section-title {
        font-size: 1.5rem;
    }

    .legal-subsection-title {
        font-size: 1.2rem;
    }

    .legal-intro-text {
        font-size: 1rem;
    }

    .legal-list {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    .legal-page {
        padding: 6rem 0 2rem;
    }

    .legal-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }

    .legal-section-title {
        font-size: 1.3rem;
    }

    .legal-subsection-title {
        font-size: 1.1rem;
    }
}

/* Products List Page Styles */
.products-list-page {
    padding: 4rem 0;
    background: var(--lighter-bg);
}

/* Products List Section */
.products-list-section {
    margin-bottom: 8rem;
}

.products-list-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.products-list-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-list-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.products-grid-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-list-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.product-list-card:nth-child(1) {
    animation-delay: 0.1s;
}

.product-list-card:nth-child(2) {
    animation-delay: 0.2s;
}

.product-list-card:nth-child(3) {
    animation-delay: 0.3s;
}

.product-list-card:nth-child(4) {
    animation-delay: 0.4s;
}

.product-list-card:nth-child(5) {
    animation-delay: 0.5s;
}

.product-list-card:nth-child(6) {
    animation-delay: 0.6s;
}

.product-list-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-cyan), #0099cc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.product-list-card:hover::before {
    transform: scaleX(1);
}

.product-list-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary-cyan);
    box-shadow: 0 25px 50px rgba(3, 217, 255, 0.25);
}

.product-list-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(3, 217, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.product-list-card-icon {
    width: 80px;
    height: 80px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
}

.product-list-card-icon i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    transition: all 0.4s ease;
}

.product-list-card:hover .product-list-card-icon {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-cyan);
}

.product-list-card:hover .product-list-card-icon i {
    transform: scale(1.1);
}

.product-list-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.product-list-card:hover .product-list-card-title {
    color: var(--primary-cyan);
}

.product-list-card-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.product-list-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.product-list-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.product-list-card:hover .product-list-card-features li {
    opacity: 1;
    transform: translateX(5px);
}

.product-list-card-features li i {
    color: var(--primary-cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.product-list-card-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.btn-product-view {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: transparent;
    color: var(--primary-cyan);
    border: 2px solid var(--primary-cyan);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

.btn-product-view:hover {
    background: var(--primary-cyan);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 217, 255, 0.3);
}

.btn-product-view i {
    transition: transform 0.3s ease;
}

.btn-product-view:hover i {
    transform: translateX(5px);
}

/* Product Development Section */
.product-development-section {
    margin-bottom: 8rem;
    padding: 5rem 0;
    background: var(--card-bg);
    border-radius: 32px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.product-development-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.product-development-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
}

.product-development-icon-wrapper i {
    font-size: 3rem;
    color: var(--primary-cyan);
}

.product-development-section:hover .product-development-icon-wrapper {
    transform: rotate(360deg);
    background: rgba(3, 217, 255, 0.2);
    border-color: var(--primary-cyan);
}

.product-development-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.product-development-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.development-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.development-process-card {
    background: var(--lighter-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.development-process-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 217, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.development-process-card:hover::before {
    left: 100%;
}

.development-process-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(3, 217, 255, 0.2);
}

.development-process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(3, 217, 255, 0.1);
    line-height: 1;
    transition: all 0.4s ease;
}

.development-process-card:hover .development-process-number {
    color: rgba(3, 217, 255, 0.2);
    transform: scale(1.1);
}

.development-process-icon {
    width: 80px;
    height: 80px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.development-process-icon i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.development-process-card:hover .development-process-icon {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.15) rotate(5deg);
}

.development-process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.development-process-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Products Advantages Section */
.products-advantages-section {
    margin-bottom: 6rem;
}

.products-advantages-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.products-advantages-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-advantages-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
}

.advantage-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-cyan), #0099cc);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.advantage-card:hover::after {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 25px 50px rgba(3, 217, 255, 0.25);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.advantage-icon i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.2), rgba(0, 153, 204, 0.2));
    transform: scale(1.15) rotate(10deg);
}

.advantage-card:hover .advantage-icon i {
    transform: scale(1.1);
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.advantage-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Products CTA Section */
.products-cta-section {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.products-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.products-cta-icon {
    font-size: 4rem;
    color: var(--primary-cyan);
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.products-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.products-cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.products-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for Products List Page */
@media (max-width: 1024px) {
    .products-grid-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .development-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .products-list-title,
    .product-development-title,
    .products-advantages-title {
        font-size: 2rem;
    }

    .products-grid-list,
    .development-process-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .product-development-section {
        padding: 3rem 1.5rem;
    }

    .products-cta-title {
        font-size: 2rem;
    }

    .products-cta-buttons {
        flex-direction: column;
    }

    .products-cta-buttons a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .products-list-page {
        padding: 2rem 0;
    }

    .product-list-card {
        padding: 2rem;
    }

    .product-development-header,
    .products-advantages-header {
        margin-bottom: 2rem;
    }

    .products-cta-section {
        padding: 3rem 1.5rem;
    }
}

/* Product Details Page Styles */
.product-details-page {
    padding: 4rem 0;
    background: var(--lighter-bg);
}

/* Product Overview Section */
.product-overview-section {
    margin-bottom: 6rem;
}

.product-overview-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 4rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.product-overview-text {
    animation: fadeInLeft 0.8s ease-out;
}

.product-overview-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(3, 217, 255, 0.3);
}

.product-overview-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.product-overview-description {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.product-overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border-color);
}

.overview-stat-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.overview-stat-item:hover {
    transform: translateY(-5px);
}

.overview-stat-item i {
    font-size: 2rem;
    color: var(--primary-cyan);
    margin-bottom: 0.75rem;
    display: block;
}

.overview-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.overview-stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-overview-image {
    animation: fadeInRight 0.8s ease-out;
}

.product-main-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-main-image:hover {
    transform: scale(1.05);
}

.product-main-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.product-main-image:hover img {
    transform: scale(1.1);
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Product Features Section */
.product-features-section {
    margin-bottom: 6rem;
    padding: 5rem 0;
    background: var(--card-bg);
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.features-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.feature-item-card {
    background: var(--lighter-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(3, 217, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-item-card:hover::before {
    left: 100%;
}

.feature-item-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(3, 217, 255, 0.2);
}

.feature-item-icon {
    width: 70px;
    height: 70px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.feature-item-icon i {
    font-size: 2rem;
    color: var(--primary-cyan);
}

.feature-item-card:hover .feature-item-icon {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.feature-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-item-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Technologies Section */
.product-technologies-section {
    margin-bottom: 6rem;
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.technology-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.technology-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 25px 50px rgba(3, 217, 255, 0.25);
}

.technology-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.technology-icon i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
}

.technology-card:hover .technology-icon {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.2), rgba(0, 153, 204, 0.2));
    transform: scale(1.15) rotate(10deg);
}

.technology-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.technology-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Benefits & Goals Section */
.product-benefits-goals-section {
    margin-bottom: 6rem;
}

.benefits-goals-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.benefits-section,
.goals-section {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.benefits-list,
.goals-list {
    margin-top: 2rem;
}

.benefit-item,
.goal-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.benefit-item:last-child,
.goal-item:last-child {
    border-bottom: none;
}

.benefit-item:hover,
.goal-item:hover {
    transform: translateX(10px);
    padding-left: 1rem;
}

.benefit-item-icon {
    width: 50px;
    height: 50px;
    background: rgba(3, 217, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item-icon i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.benefit-item:hover .benefit-item-icon {
    background: rgba(3, 217, 255, 0.2);
    transform: scale(1.1);
}

.benefit-item-content {
    flex: 1;
}

.benefit-item-title,
.goal-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit-item-description,
.goal-item-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.goal-item-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-cyan), #0099cc);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(3, 217, 255, 0.3);
    transition: all 0.3s ease;
}

.goal-item:hover .goal-item-number {
    transform: scale(1.1) rotate(5deg);
}

.goal-item-content {
    flex: 1;
}

/* Gallery Section */
.product-gallery-section {
    margin-bottom: 6rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    user-select: none;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    color: #ffffff;
}

.gallery-item-overlay i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.gallery-item-overlay span {
    font-size: 1.25rem;
    font-weight: 600;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(3, 217, 255, 0.3);
    transform: translateY(-5px);
}

/* Gallery Lightbox Modal */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gallery-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.gallery-lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease-out;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-lightbox-image-wrapper {
    position: relative;
    max-width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-image-wrapper img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-lightbox-title {
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 0.75rem 1.5rem;
    background: rgba(3, 217, 255, 0.2);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(3, 217, 255, 0.3);
    border-color: var(--primary-cyan);
    transform: scale(1.1);
}

.gallery-lightbox-close {
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
}

.gallery-lightbox-prev {
    left: 2rem;
    font-size: 1.75rem;
}

.gallery-lightbox-next {
    right: 2rem;
    font-size: 1.75rem;
}

.gallery-lightbox-close i,
.gallery-lightbox-prev i,
.gallery-lightbox-next i {
    color: #ffffff;
}

/* Reviews Section */
.product-reviews-section {
    margin-bottom: 6rem;
    padding: 5rem 0;
    background: var(--card-bg);
    border-radius: 32px;
    border: 1px solid var(--border-color);
}

.reviews-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.review-card-detailed {
    background: var(--lighter-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
}

.review-card-detailed:hover {
    transform: translateY(-8px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 40px rgba(3, 217, 255, 0.2);
}

.review-stars {
    color: #ffa500;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.25rem;
}

.review-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.05rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.review-author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.2), rgba(0, 153, 204, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-author-avatar i {
    font-size: 1.5rem;
    color: var(--primary-cyan);
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.review-author-title {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Top Users Section */
.product-users-section {
    margin-bottom: 6rem;
}

.top-users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.top-user-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.top-user-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 25px 50px rgba(3, 217, 255, 0.25);
}

.top-user-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.top-user-logo i {
    font-size: 2.5rem;
    color: var(--primary-cyan);
}

.top-user-card:hover .top-user-logo {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.2), rgba(0, 153, 204, 0.2));
    transform: scale(1.15) rotate(5deg);
}

.top-user-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.top-user-type {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.top-user-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.top-user-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.top-user-stat i {
    color: var(--primary-cyan);
    font-size: 1.25rem;
}

/* Book Demo CTA Section */
.product-demo-cta-section {
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.1), rgba(0, 153, 204, 0.1));
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.demo-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.demo-cta-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(3, 217, 255, 0.2), rgba(0, 153, 204, 0.2));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

.demo-cta-icon-wrapper i {
    font-size: 3rem;
    color: var(--primary-cyan);
}

.demo-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.demo-cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.demo-cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.demo-cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.demo-cta-feature i {
    color: var(--primary-cyan);
    font-size: 1.25rem;
}

.demo-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Styles for Product Details Page */
@media (max-width: 1024px) {
    .product-overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .benefits-goals-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .features-grid-detailed,
    .reviews-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-overview-content {
        padding: 2.5rem;
    }

    .product-overview-title,
    .section-title,
    .demo-cta-title {
        font-size: 2rem;
    }

    .product-overview-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .features-grid-detailed,
    .reviews-grid-detailed,
    .technologies-grid,
    .top-users-grid {
        grid-template-columns: 1fr;
    }

    .demo-cta-features {
        flex-direction: column;
        gap: 1rem;
    }

    .demo-cta-buttons {
        flex-direction: column;
    }

    .demo-cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .product-features-section,
    .product-reviews-section {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-details-page {
        padding: 2rem 0;
    }

    .product-overview-content {
        padding: 2rem;
    }

    .benefits-section,
    .goals-section {
        padding: 2rem;
    }

    .product-demo-cta-section {
        padding: 3rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    /* Lightbox responsive styles */
    .gallery-lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .gallery-lightbox-image-wrapper img {
        max-height: 80vh;
    }

    .gallery-lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .gallery-lightbox-prev {
        left: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-lightbox-next {
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .gallery-lightbox-title {
        font-size: 1rem;
        padding: 0.5rem 1rem;
        margin-top: 1rem;
    }
}