:root {
    --bg-dark: #050510;
    --bg-darker: #020205;
    --primary: #00d4ff;
    /* Neon Cyan */
    --secondary: #9d00ff;
    /* Neon Purple */
    --primary-glow: rgba(0, 212, 255, 0.4);
    --secondary-glow: rgba(157, 0, 255, 0.4);
    --text: #ffffff;
    --text-muted: #a0a0b0;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);

    --font-heading: 'Syncopate', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

.section-padding {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 0 20px var(--secondary-glow);
    border: none;
}

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

.btn-outline {
    background: transparent;
    color: white;
    border: 1px solid var(--primary);
    margin-left: 20px;
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: rgba(5, 5, 16, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

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

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: white;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* offset navbar */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 16, 0.7);
    /* Dark overlay for text readability */
    z-index: 1;
}

.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* Sit above video/overlay but below content */
    pointer-events: none;
    mix-blend-mode: screen;
    /* Blend orbs nicely with video */
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    left: -150px;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, 50px);
    }

    100% {
        transform: translate(0, 0);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

/* Section Headers */
.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

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

.glass-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    font-weight: 300;
}

/* Product Showcase */
.product-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.product-info {
    flex: 1;
}

.product-visual {
    flex: 1;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.badge {
    background: rgba(157, 0, 255, 0.2);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(157, 0, 255, 0.3);
}

.product-info h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}

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

.features-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.mockup-screen {
    width: 80%;
    height: 70%;
    background: #0a0a1a;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.mockup-header {
    height: 30px;
    background: #151525;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 6px;
}

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

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.mockup-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 30px);
}

.transaction-item {
    background: rgba(39, 201, 63, 0.1);
    padding: 15px 30px;
    border-radius: 10px;
    margin-top: 15px;
    border: 1px solid rgba(39, 201, 63, 0.3);
    text-align: center;
}

.status {
    display: block;
    color: #27c93f;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 5px;
    font-weight: 700;
}

/* Contact */
.contact-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
}

.contact-box h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* email-link removed */

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    font-weight: 700;
    background: var(--glass);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--primary-glow);
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .product-wrapper {
        flex-direction: column;
        gap: 40px;
        /* Reduced gap */
    }

    /* Disable parallax transform on standard stacking to prevent overlap */
    .product-visual[data-speed] {
        transform: none !important;
    }

    /* Additional spacing for the info */
    .product-info {
        text-align: center;
        /* Center text for mobile */
    }

    .product-info h2,
    .product-info p,
    .product-info ul {
        text-align: center;
    }

    .features-list {
        display: inline-block;
        /* Helps with centering text-aligned list */
        text-align: left;
        /* Keep list items left-aligned for readability */
    }

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

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(5, 5, 16, 0.95);
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background: #050510;
        width: 100%;
        text-align: center;
        padding: 40px 0;
        transition: 0.3s;
        border-bottom: 1px solid var(--glass-border);
        height: calc(100vh - 80px);
        /* Full height fix */
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    .hamburger {
        display: block;
    }

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

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .hero-cta .btn-outline {
        margin-left: 0;
    }

    /* .email-link removed */

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .container {
        padding: 0 15px;
    }

    .service-card {
        padding: 25px;
    }

    .product-visual {
        height: 300px;
    }
}

/* White bg image adaptation */
.white-adapt {
    background: rgba(255, 255, 255, 0.9);
    /* Light background to blend white image */
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    /* Optional: if the image has harsh white edges, this helps blends if we kept dark bg, 
       but with white-adapt we are making the container light. */
}

/* Responsive adjustments for badges and images */
@media (max-width: 992px) {

    .product-logo-wrapper,
    .badge {
        margin-left: auto;
        margin-right: auto;
    }
}

/* New Product Logo Styles */
.product-logo-wrapper {
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 4px;
    border-radius: 8px;
    display: table;
    /* Ensures it sits on its own line but wraps content */
    margin-top: 10px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.product-logo {
    height: 35px;
    /* Smaller size */
    width: auto;
    display: block;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: linear-gradient(90deg, #25D366, #128C7E);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    font-size: 1.2rem;
    padding: 15px 40px;
    margin: 30px 0;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-whatsapp:hover {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px);
}

/* Ensure background is robust */
@media (max-width: 768px) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Ensures coverage on mobile */
    }
}