:root {
    --bg-dark: #0a0a0f;
    --text-white: #ffffff;
    --text-gray: #a0a0b0;
    --primary: #00f2ff;
    --secondary: #7000ff;
    --glass: rgba(255, 255, 255, 0.05);
    --border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* Background Mesh Animation */
.background-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(112, 0, 255, 0.15), transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(0, 242, 255, 0.15), transparent 25%);
    filter: blur(80px);
}

/* Typography & Utility */
.gradient-text {
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.logo .dot {
    color: var(--primary);
}

.links a {
    margin-left: 2rem;
    color: var(--text-gray);
    transition: 0.3s;
    font-weight: 500;
}

.links a:hover {
    color: var(--text-white);
}

.btn-nav {
    border: 1px solid var(--border);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    background: var(--glass);
}

.btn-nav:hover {
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.3);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5% 10%;
    min-height: 90vh;
}

.hero-content {
    max-width: 50%;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), var(--primary));
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.4);
}

.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--glass);
    border-color: var(--text-white);
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 3D Box Image */
.hero-image {
    perspective: 1000px;
}

.box-container {
    position: relative;
    padding: 2rem;
    transition: transform 0.1s;
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
    opacity: 0.6;
}

.floating-box {
    width: 450px;
    /* max-width: 100%; */
    filter: drop-shadow(0 20px 50px rgba(112, 0, 255, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotateY(0deg);
    }

    50% {
        transform: translateY(-20px) rotateY(5deg);
    }

    100% {
        transform: translateY(0px) rotateY(0deg);
    }
}

/* Features */
.features {
    padding: 5% 10%;
    text-align: center;
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 20px;
    text-align: left;
    transition: 0.3s;
    backdrop-filter: blur(10px);
}

.icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Pricing */
.pricing {
    padding: 5% 10%;
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 1.5rem 0;
    color: var(--text-white);
}

.price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.pricing-card li {
    margin-bottom: 1rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card li i {
    color: var(--primary);
}

.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Contact / Footer */
footer {
    padding: 5% 10%;
    background: black;
    text-align: center;
    border-top: 1px solid var(--border);
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.social-btn {
    padding: 10px 20px;
    border-radius: 10px;
    background: var(--glass);
    border: 1px solid var(--border);
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-btn:hover {
    background: var(--text-white);
    color: black;
}

.whatsapp {
    color: #25d366;
}

.facebook {
    color: #1877f2;
}

.whatsapp:hover,
.facebook:hover {
    color: black;
}

.copyright {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* 3D Tilt Script Class will be added by JS */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

/* Screenshots / Slideshow */
.screenshots {
    padding: 5% 10%;
    text-align: center;
    background: linear-gradient(180deg, var(--bg-dark), rgba(112, 0, 255, 0.05), var(--bg-dark));
}

.screenshots h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.slide {
    display: none;
}

.slide img {
    width: 100%;
    display: block;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 0 3px 3px 0;
}

.prev:hover,
.next:hover {
    background-color: var(--primary);
    color: black;
}

/* Dots */
.dots-container {
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.dot-indicator {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: var(--text-gray);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.dot-indicator:hover,
.dot-indicator.active {
    background-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* Fade animation */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 15vh;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-image {
        margin-top: 4rem;
    }

    .floating-box {
        width: 300px;
    }
}