/* style.css */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #050816;
    color: #fff;
    overflow-x: hidden;
}

section {
    padding: 90px 7%;
    position: relative;
}

h1,
h2,
h3 {
    font-weight: 700;
}

p {
    color: #9aa0b7;
    line-height: 1.6;
}

span {
    background: linear-gradient(90deg, #7b61ff, #44e6c2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    padding: 14px 28px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #4d7cff, #9a5cff);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all .35s ease;
    box-shadow: 0 10px 25px rgba(154, 92, 255, .18);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(154, 92, 255, .30);
}

.btn-primary i {
    font-size: 14px;
    transition: transform .3s ease;
}

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-outline {
    padding: 14px 28px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid #3256c6;
    color: #66a2ff;
    cursor: pointer;
}

/* Explore Bots Special Button */
.btn-bots {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #00b894, #00d2ff);
    box-shadow: 0 10px 25px rgba(0, 210, 255, .18);
    transition: all .35s ease;
}

.btn-bots:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(0, 210, 255, .28);
}

.btn-bots i {
    font-size: 14px;
    transition: transform .3s ease;
}

.btn-bots:hover i {
    transform: translateX(4px);
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 7%;
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(5, 8, 22, .8);
    backdrop-filter: blur(12px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
    -webkit-text-fill-color: #fff;
    background: none;
}

.logo img {
    width: 40px;
    height: 40px;
    /* object-fit: contain;
    display: block; */
}


nav {
    display: flex;
    gap: 40px;
}

nav a {
    color: #c4c8d7;
    text-decoration: none;
    position: relative;
    padding: 8px 0;
    transition: color 0.35s ease, transform 0.35s ease;
}

nav a:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #4d7cff, #9a5cff);
    border-radius: 10px;
    transition: width 0.35s ease;
}

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

nav a.active {
    color: #ffffff;
}

/* HERO */
.hero {
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background:
        radial-gradient(circle at center, #14243d 0%, #050816 65%);
}

.badge {
    border: 1px solid #2e4b9c;
    padding: 12px 24px;
    border-radius: 40px;
    color: #77a8ff;
    margin-bottom: 35px;
}

.hero h1 {
    font-size: 92px;
    line-height: 1.05;
    max-width: 1100px;
}

.hero p {
    font-size: 28px;
    max-width: 900px;
    margin-top: 30px;
}

/* CTA */
.cta-section {
    text-align: center;
}

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

.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.stat-box {
    width: 220px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    background: #0b1022;
}

.stat-box h3 {
    font-size: 48px;
    color: #9a7cff;
}

/* WHY */
.why {
    text-align: center;
}

.why small,
.bots small {
    letter-spacing: 5px;
    color: #4f86ff;
}

.why h2,
.bots h2 {
    font-size: 72px;
    margin: 20px 0;
}

.feature-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-card {
    padding: 30px;
    background: #0b1022;
    border-radius: 30px;
    border: 1px solid rgba(87, 125, 255, .3);
    text-align: left;
    transition: all .35s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(120, 160, 255, .65);
    box-shadow:
        0 18px 35px rgba(77, 124, 255, .16),
        0 8px 18px rgba(154, 92, 255, .10);
}

.feature-card i {
    font-size: 30px;
    margin-bottom: 20px;
    color: #7b61ff;
    background-color: #2e4b9c;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all .35s ease;
}

.feature-card:hover i {
    transform: scale(1.08) rotate(-4deg);
    box-shadow: 0 10px 22px rgba(77, 124, 255, .22);
}

/* BOTS */
.bots {
    text-align: center;
}

.bot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.bot-card {
    text-align: left;
    padding: 42px;
    background: #0b1022;
    border-radius: 28px;
    border: 1px solid rgba(87, 125, 255, .28);
    position: relative;
    transition: all .35s ease;
}

.bot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(77, 124, 255, .12);
    border-color: rgba(120, 160, 255, .55);
}

.bot-card i {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8f7cff;
}

.bot-card h3 {
    font-size: 52px;
    margin-bottom: 28px;
    line-height: 1.1;
}

.bot-features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.bot-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #d3d8e7;
    font-size: 18px;
    line-height: 1.5;
}

.bot-features li i {
    font-size: 18px;
    color: #44e6c2;
    margin: 0;
    min-width: 18px;
}

.bot-card ul li {
    margin-bottom: 14px;
    color: #d3d8e7;
    font-size: 18px;
    line-height: 1.5;
}

.live {
    position: absolute;
    right: 30px;
    top: 30px;
    color: #44e6ff;
    font-size: 14px;
    font-weight: 600;
}

.full {
    width: 100%;
    margin-top: 15px;
}

/* FOOTER */
.footer {
    padding: 80px 7% 60px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 45px;
    background: linear-gradient(180deg, #071020, #050816);
    border-top: 1px solid rgba(255, 255, 255, .06);
    align-items: stretch;
    position: relative;
}

.footer>div {
    position: relative;
    padding: 0 35px;
}

.footer>div:nth-child(2)::before,
.footer>div:nth-child(3)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8%;
    height: 84%;
    width: 1px;
    background: rgba(255, 255, 255, .08);
}

.footer h3 {
    font-size: 52px;
    margin-bottom: 18px;
    color: #ffffff;
}


.footer h4 {
    font-size: 34px;
    margin-bottom: 28px;
    color: #ffffff;
}

.footer p,
.footer li {
    color: #9aa0b7;
    font-size: 18px;
    line-height: 1.8;
}



/* Contact Section */
.foot-contact p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.foot-contact i {
    color: #44e6c2;
    width: 20px;
    font-size: 18px;
}

/* Brand */
.foot-brand p {
    max-width: 360px;
    line-height: 1.9;
}

/* Social */
.social-icons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icons li {
    margin-bottom: 16px;
}

.social-icons li a {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #9aa0b7;
    text-decoration: none;
    transition: all .3s ease;
}

.social-icons li a:hover {
    transform: translateX(6px);
    color: #ffffff;
}

.social-icons li a i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #ffffff;
    transition: all .3s ease;
}

.social-icons li a:hover i {
    background: linear-gradient(90deg, #4d7cff, #9a5cff);
    transform: translateY(-3px);
}

/* Bottom */
.copyright {
    padding: 22px 7%;
    text-align: center;
    color: #8a8fa7;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: #050816;
}

/* Hamburger hidden on desktop */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

/* MOBILE NAV */
@media(max-width:768px) {

    .menu-toggle {
        display: block;
        font-size: 26px;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
    }


    .navbar {
        position: relative;
    }


    .desktop-btn {
        display: none;
    }

    nav {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -280px;
        width: 260px;
        height: 100vh;
        background: #08101f;
        padding-top: 90px;
        gap: 0;
        transition: right .4s ease;
        z-index: 1001;
        box-shadow: -10px 0 30px rgba(0, 0, 0, .35);
    }

    nav.show {
        right: 0;
    }

    nav a {
        width: 100%;
        padding: 18px 28px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, .05);
    }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .45);
        z-index: 1000;
    }

}

/* Mobile */
@media(max-width:768px) {

    .footer {
        grid-template-columns: 1fr;
        gap: 0px;
        text-align: center;
    }

    .footer>div {
        padding: 0;
        border: none !important;
        text-align: center;
    }

    .footer>div::before {
        display: none;
    }

    .footer>div:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .foot-contact p,
    .social-icons li,
    .social-icons li a {
        justify-content: center;
    }

    .foot-brand p {
        margin: auto;
    }

    .foot-contact p,
    .social-icons li {
        justify-content: center;
    }

    .foot-brand p {
        margin: auto;
    }

}

/* Bottom */
.copyright {
    padding: 22px 7%;
    text-align: center;
    color: #8a8fa7;
    border-top: 1px solid rgba(255, 255, 255, .06);
    background: #050816;
}

/* Mobile */
@media(max-width:768px) {

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 35px;
    }

    .footer a,
    .foot-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

}

/* CHAT BUTTON */


/* MOBILE */
@media(max-width:768px) {

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }


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

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

    .why h2,
    .bots h2 {
        font-size: 42px;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .feature-card {
        padding: 22px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .bot-card h3 {
        font-size: 40px;
    }

    .bot-card ul li {
        font-size: 16px;
    }

}

.bot-link {
    width: 100%;
    height: 58px;
    border-radius: 14px;
    border: 1px solid #3256c6;
    color: #66a2ff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    transition: all .3s ease;
}

.bot-link:hover {
    background: rgba(77, 124, 255, .08);
    color: #ffffff;
    transform: translateY(-2px);
}

.bot-link i {
    font-size: 14px;
    margin: 0;
    transition: transform .3s ease;
}

.bot-link:hover i {
    transform: translateX(4px);
}


/* CONTACT SECTION */
.contact-section {
    padding: 90px 7%;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0b1022;
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-box {
    padding: 50px;
}

.contact-form-box h2 {
    font-size: 38px;
    margin-bottom: 10px;
}

.contact-form-box p {
    margin-bottom: 25px;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

#contact-form input,
#contact-form textarea {
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: #141a31;
    color: white;
    font-size: 15px;
}

#contact-form textarea {
    resize: none;
}

.full-btn {
    width: 100%;
}

#success-msg {
    color: #44e6c2;
    font-size: 14px;
    margin-top: 10px;
}

/* MOBILE */
@media(max-width:768px) {

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

    .contact-form-box {
        padding: 30px;
    }

    .contact-form-box h2 {
        font-size: 28px;
    }

    .contact-image img {
        height: 250px;
    }

}


.nav-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.nav-btn i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.nav-btn:hover i {
    transform: translateX(4px);
}