/* Custom Properties for consistency */
:root {
    --accent: #007BFF;
    --navy: #0A192F;
    --glass: rgba(255, 255, 255, 0.85);
}

.stapples-hero {
    position: relative;
    padding: 180px 5% 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: #f8fbff;
    overflow: hidden;
}

/* Background Decorative Elements */
.hero-bg-elements .glow-circle {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1.2fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Typography */
.hero-badge {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.main-heading {
    font-size: clamp(2.8rem, 5vw, 4.5rem);
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    line-height: 1.05;
    color: var(--navy);
    margin-bottom: 25px;
}

.highlight {
    background: linear-gradient(90deg, var(--accent), #00d2ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-text {
    font-size: 1.2rem;
    color: #556075;
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 600px;
}

/* Steps Flow */
.steps-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-icon {
    width: 45px;
    height: 45px;
    background: var(--accent);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
}

.step-info span {
    font-size: 0.75rem;
    color: #777;
}

.step-arrow {
    color: #cbd5e0;
}

/* Main CTA */
.cta-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: var(--navy);
    color: white;
    padding: 22px 45px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.2);
}

.cta-primary-hero:hover {
    background: #000;
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 123, 255, 0.3);
}

/* Video Window - The Star Feature */
.video-window {
    background: white;
    border-radius: 30px;
    padding: 12px;
    box-shadow: 0 50px 100px rgba(10, 25, 47, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.video-window:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.window-header {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: #f1f5f9;
    border-radius: 20px 20px 5px 5px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    background: #cbd5e0;
    border-radius: 50%;
}

.status-live {
    font-size: 0.7rem;
    font-weight: 800;
    color: #ef4444;
}

.video-container {
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.main-brand-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Fixes */
@media (max-width: 1200px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .sub-text,
    .steps-container {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .video-window {
        transform: none;
        max-width: 800px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stapples-hero {
        padding-top: 140px;
    }

    .step-arrow {
        display: none;
    }

    .steps-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-heading {
        font-size: 2.2rem;
    }
}


/* ====== MOBILE HERO FIX ====== */
@media (max-width: 768px) {

    .stapples-hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }

    .main-heading {
        font-size: 2rem;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .sub-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
        max-width: 100%;
    }

    /* STEPS INLINE IN ONE LINE */
    .steps-container {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        margin-bottom: 30px;
    }

    .step-item {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        width: 100%;
    }

    .step-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
        border-radius: 8px;
    }

    .step-info strong {
        font-size: 0.75rem;
    }

    .step-info span {
        font-size: 0.65rem;
    }

    .step-arrow {
        display: none;
    }

    /* BUTTON COMPACT */
    .cta-primary-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
        font-size: 0.9rem;
        border-radius: 40px;
        gap: 10px;
        box-shadow: 0 10px 25px rgba(10, 25, 47, 0.15);
    }

    /* VIDEO SPACE REDUCE */
    .video-window {
        margin-top: 25px;
        padding: 8px;
    }
}