/* =========================================
   HERO SECTION (FULL IMAGE + OVERLAY)
========================================= */
.hero {
    position: relative;
    padding: 100px 0 80px;

    background: url("/static/img/hero1.jpg") center/cover no-repeat;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.75),
        rgba(15, 23, 42, 0.9)
    );
    z-index: 1;
}

/* CONTAINER LAYER */
.hero-inner {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 50px;
}

/* =========================================
   LEFT CONTENT
========================================= */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* BADGE */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(96, 165, 250, 0.15);
    color: #60a5fa;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: #60a5fa;
    border-radius: 50%;
}

/* TITLE */
.hero-title {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #ffffff;
}

.hero-title-highlight {
    color: #60a5fa;
}

/* SUBTITLE */
.hero-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

/* BUTTON BASE */
.btn-lg {
    padding: 12px 22px;
    font-size: 0.95rem;
}

/* PRIMARY */
.btn-primary {
    background: linear-gradient(135deg, #3b5bdb, #4c6ef5);
    color: white;
    border-radius: 999px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 91, 219, 0.4);
}

/* SECONDARY */
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* TRUST */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 10px;
}

.trust-item {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-icon {
    color: #10b981;
}

/* =========================================
   RIGHT IMAGE
========================================= */
.hero-image {
    position: relative;
}

.hero-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* =========================================
   FLOATING CARDS
========================================= */
.hero-float {
    position: absolute;
    background: white;
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 12px;
    animation: floatY 4s ease-in-out infinite;
}

.hero-float--sales {
    top: 20px;
    left: -20px;
}

.hero-float--stock {
    bottom: 20px;
    right: -20px;
}

.float-label {
    color: #64748b;
}

.float-value {
    font-weight: 600;
    font-size: 13px;
}

.float-trend {
    font-size: 11px;
    color: #64748b;
}

/* FLOAT ANIMATION */
@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
    }

    .hero-float {
        display: none;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-lg {
        width: 100%;
        text-align: center;
    }
}