* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Host Grotesk", sans-serif;
}

/* =========================
   FLOATING NAVBAR
========================= */
.floating-nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: #fff;
    padding: 14px 30px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    z-index: 1000;
}

.logo img {
    height: 25px;
}

/* =========================
   NAV LINKS
========================= */
.nav-links {
    display: flex;
    align-items: center;
    justify-self: center;
}

.nav-links a {
    position: relative;
    margin: 0 12px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    padding-bottom: 4px;
    
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: #ff7b39;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =========================
   NAV BUTTONS
========================= */
.nav-buttons {
    display: flex;
    align-items: center;
}

.nav-buttons a {
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.support {
    background: #000;
    color: #fff;
    margin-right: 10px;
}

.contactus {
    background: #ff7b39;
    color: #fff;
}

/* =========================
   HERO
========================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1340px;
    margin: 0 auto;
    padding: clamp(90px, 10vw, 90px)
             clamp(20px, 6vw, 58px)
             clamp(50px, 8vw, 80px);
}

.hero-text {
    max-width: clamp(320px, 45vw, 520px);
}

.hero-text h1 {
    font-size: clamp(32px, 5vw, 50px);
    margin-bottom: 18px;
    font-weight: 600;
    line-height: 1.08;
}

.hero-text span {
    color: #ff7b39;
}

.hero-text p {
    font-size: clamp(14px, 1.4vw, 16px);
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.hero-stats {
    display: flex;
    align-items: center;
}

.stat h3 {
    font-size: clamp(22px, 3vw, 32px);
}

.stat p {
    font-size: 14px;
    color: #666;
}

.divider {
    width: 1px;
    height: 50px;
    background: #e0e0e0;
    margin: 0 30px;
}

.hero-image img {
    width: clamp(340px, 45vw, 480px);
    padding: 30px;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #000;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
    display: flex;
    align-items: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        gap: 24px;
        padding: 30px 0;
        box-shadow: 0 20px 30px rgba(0,0,0,0.08);

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        gap: 18px;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 14px;
    }
}

@media (max-width: 750px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: clamp(115px, 10vw, 115px)
             clamp(20px, 6vw, 58px)
             clamp(50px, 8vw, 80px);
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image img {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .divider {
        display: none;
    }
}
/* =========================
   SUBTLE LOAD ANIMATION
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
}

.hero-image {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.15s;
}
.hero-stats {
    opacity: 0;
    animation: fadeUp 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

