/* =======================================================
   1. HOME - HERO & BRAND SECTION
   ======================================================= */
/* --- HERO SECTION --- */
.hero-slider-container {
    position: relative;
    height: 95vh;
    overflow: hidden;
    background: radial-gradient(
        circle at 50% 0%,
        #0369a1,
        var(--kaching-blue) 80%
    );
    display: flex;
    align-items: center;
}
.hero-slider-container::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(0, 210, 255, 0.2);
    filter: blur(100px);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
}
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}
.hero-slide.active {
    opacity: 1;
    z-index: 2;
}
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}
.dot.active {
    background: #fff;
    width: 35px;
    border-radius: 10px;
}
.hero-text {
    max-width: 550px;
    position: relative;
    z-index: 2;
}
.hero-text h1 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    color: #fff;
}
.hero-text p {
    font-size: 18px;
    color: #e2e8f0;
    line-height: 1.6;
    font-weight: 400;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    align-items: center;
}
.btn-demo {
    background: #00d2ff;
    color: #0f172a;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3);
    transition: all 0.3s ease;
}
.btn-demo:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 210, 255, 0.5);
}
.btn-wa {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.btn-wa:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}
.hero-image {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    perspective: 1200px;
    animation: floatMockup 6s ease-in-out infinite;
}
@keyframes floatMockup {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
.mockup-frame {
    width: 520px;
    height: 380px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    transform: rotateY(-15deg) rotateX(10deg);
    box-shadow:
        -30px 40px 80px rgba(0, 0, 0, 0.4),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* --- BRAND SECTION --- */
.brand-section {
    background-color: #ffffff;
    padding: 50px 0;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.brand-section::before,
.brand-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.brand-section::before {
    left: 0;
    background: linear-gradient(
        to right,
        white 0%,
        rgba(255, 255, 255, 0) 100%
    );
}
.brand-section::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}
.brand-track {
    display: inline-block;
    animation: scroll-left 40s linear infinite;
}
.brand-section:hover .brand-track {
    animation-play-state: paused;
}
.brand-item {
    display: inline-block;
    font-size: 24px;
    font-weight: 800;
    color: #cbd5e1;
    margin: 0 60px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}
.brand-item:hover {
    color: var(--kaching-blue);
    cursor: pointer;
}
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
