/* =========================
   HERO SECTION
========================= */
.hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 120px 2% 10px 2%;
    /* space for fixed navbar */
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* =========================
   HERO CONTENT
========================= */
.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    max-width: 520px;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* Badge */
.hero-badge {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: 14px;
    border-radius: 20px;
    background: rgba(255, 122, 25, 0.15);
    color: var(--color-orange);
    border: 1px solid rgba(255, 122, 25, 0.4);
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 18px;
    margin-bottom: 40px;
}

/* Stats */
.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stats h3 {
    font-size: 26px;
    color: var(--color-orange);
}

.hero-stats span {
    font-size: 14px;
    opacity: 0.75;
}

/* =========================
   HERO VISUAL
========================= */
.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
}

/* =========================
   GLOSSY GLASS CARD
========================= */
.glass-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    padding: 32px;
    border-radius: 18px;

    /* Glass background */
    background: linear-gradient(135deg,
            #e9630abd,
            #ff7919a2);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, 0.25);

    /* Glow + depth */
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(255, 122, 25, 0.25);

    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Lift + glow on hover */
.glass-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 45px 90px rgba(0, 0, 0, 0.6),
        0 0 70px rgba(255, 122, 25, 0.45);
}

/* =========================
   GLOSSY SHINE EFFECT
========================= */
.glass-card::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.35),
            transparent 70%);
    transform: rotate(25deg);
    transition: 0.7s ease;
    pointer-events: none;
}

.glass-card:hover::before {
    left: 60%;
}

/* =========================
   CARD CONTENT
========================= */
.glass-card h4 {
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--color-white);
    position: relative;
}

.glass-card ul li {
    font-size: 15px;
    padding: 9px 0;
    opacity: 0.95;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Accent bullet */
.glass-card ul li::before {
    content: "▸";
    color: var(--color-white);
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-content h1 {
        font-size: 44px;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 120px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
    }
}
