﻿
:root {
    --primary: #ff6a00;
    --primary2: #ff8c32;
    --dark: #080808;
    --white: #fff;
    --gray: #b8b8b8;
    --glass: rgba(255,255,255,.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth
}

body {
    font-family: 'Poppins',sans-serif;
    background: linear-gradient(180deg,#080808,#111);
    color: #fff;
    overflow-x: hidden
}

#loader {
    position: fixed;
    inset: 0;
    background: #080808;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    animation: pulse 1.4s infinite
}

@keyframes pulse {
    50% {
        transform: scale(1.08);
        opacity: .8
    }
}

.cursor {
    position: fixed;
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    box-shadow: 0 0 20px var(--primary)
}

header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 28px;
    background: rgba(20,20,20,.55);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 50px;
    z-index: 1000
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
}

    .logo img {
        width: 42px;
        height: 42px;
        object-fit: contain;
    }

    .logo span {
        color: var(--primary)
    }

nav {
    display: flex;
    gap: 28px
}

    nav a {
        position: relative;
        text-decoration: none;
        color: white;
        transition: .3s;
        padding: 5px 0;
    }

        nav a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0;
            height: 2px;
            background: #ff6a00;
            transition: .3s;
        }

        nav a:hover {
            color: #ff6a00;
        }

            nav a:hover::after {
                width: 100%;
            }

        nav a.active {
            color: #ff6a00;
        }

            nav a.active::after {
                width: 100%;
            }
.menu-btn {
    display: none
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 120px 8%;
    gap: 50px
}

.tag {
    color: var(--primary);
    letter-spacing: 3px;
    margin-bottom: 20px
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1
}

    .hero h1 span {
        color: var(--primary)
    }

.hero-text {
    margin: 25px 0;
    color: var(--gray);
    line-height: 1.8
}

.hero-image img {
    width: 100%;
    animation: float 5s ease-in-out infinite
}

@keyframes float {
    50% {
        transform: translateY(-18px)
    }
}

.btn, .btn-outline {
    display: inline-block;
    padding: 15px 34px;
    border-radius: 40px;
    text-decoration: none;
    transition: .35s;
    margin-right: 15px
}

.btn {
    background: linear-gradient(45deg,var(--primary),var(--primary2));
    color: #fff
}

    .btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 15px 40px rgba(255,106,0,.35)
    }

.btn-outline {
    border: 2px solid var(--primary);
    color: #fff
}

    .btn-outline:hover {
        background: var(--primary)
    }

section {
    padding: 100px 8%
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

    .section-title h2 {
        font-size: 2.5rem
    }

    .section-title p {
        color: var(--gray);
        margin-top: 12px
    }

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 30px
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.08);
    padding: 35px;
    border-radius: 24px;
    transition: .35s
}

    .feature-card i {
        color: var(--primary);
        font-size: 2rem;
        margin-bottom: 20px
    }

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(255,106,0,.2)
    }

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.about-buttons {
    margin-top: 35px;
}

    .about-buttons .btn-outline {
        cursor: pointer;
    }

.circle {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    color: var(--primary);
    font-weight: 700;
    box-shadow: 0 0 45px rgba(255,106,0,.25)
}

#pricing {
    text-align: center
}

#pricePopup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.88);
    justify-content: center;
    align-items: center
}

    #pricePopup img {
        width: 90%;
        max-width: 700px;
        border-radius: 16px
    }

#closePopup {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 42px;
    cursor: pointer
}

.contact-box {
    display: grid;
    gap: 18px;
    max-width: 650px;
    margin: auto
}

    .contact-box div {
        background: var(--glass);
        border: 1px solid rgba(255,255,255,.08);
        padding: 22px;
        border-radius: 16px
    }

    .contact-box i {
        color: var(--primary);
        margin-right: 12px
    }

footer {
    text-align: center;
    padding: 30px;
    color: #9d9d9d;
    border-top: 1px solid rgba(255,255,255,.08)
}

#topBtn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #ff6a00;
    color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 22px;
    z-index: 999;
    transition: .3s;
    box-shadow: 0 0 20px rgba(255,106,0,.5);
}

    #topBtn:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 35px rgba(255,106,0,.8);
    }

    #topBtn i {
        line-height: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

@media(max-width:900px) {
    .hero, .about-content {
        grid-template-columns: 1fr;
        text-align: center
    }

        .hero h1 {
            font-size: 2.8rem
        }

    nav {
        display: none
    }

    .menu-btn {
        display: block;
        font-size: 1.5rem;
        cursor: pointer
    }
}
