/* --- SCOPED VARIABLES --- */
    :root {
        --purple-hmw: #6d28d9;
        --purple-light-hmw: #a78bfa;
        --gold-hmw: #fbbf24;
        --gold-dark-hmw: #d97706;
        --dark-hmw: #0f172a;
    }


    @media (max-width: 576px) {
        .phone-img-hmw{
            margin-top:-150px!important;
        }
    }

    .textContent-hmw{
        margin-top: -183px!important;
    }

    .myheading { 
        font-size: 2rem!important;
        margin-bottom: 20px!important;
        line-height: 1.2!important;
/*        color: var(--dark)!important;*/
    }
    .subhead{
        font-size: 16px !important;
    }

    /* --- BACKGROUND WRAPPER --- */
    .main-section-wrapper-hmw {
        width: 100%;
        min-height: 100vh;
/*        padding: 60px 20px;*/
        background-repeat: no-repeat;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* --- GLASS CARD --- */
    .glass-card-hmw {
        background: rgba(255, 255, 255, 0.65);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border: 1px solid rgba(255, 255, 255, 0.9);
        border-radius:15px;
        box-shadow: 1px 3px 7px 0px rgba(0, 0, 0, 0.15);
        opacity: 0;
        transform: scale(1.1) translateY(40px);
        transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
        width: 85%;
        max-width: 1200px;
    }

    .glass-card-hmw.animate-in-hmw {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    /* --- TEXT STYLES --- */
    .text-gradient-purple-hmw {
        background: linear-gradient(135deg, var(--purple-hmw), var(--purple-light-hmw));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight:bold!important;
    }
    
    .text-gradient-gold-hmw {
        background: linear-gradient(135deg, var(--gold-dark-hmw), var(--gold-hmw));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-weight:bold!important;
    }

    /* --- VISUAL ELEMENTS --- */
    .visual-container-hmw {
        height: 450px; /* Increased height for image */
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    /* 1. THE USER IMAGE MOCKUP */
    .phone-img-hmw {
/*        width: 280px; */
/*        height: auto;*/
        max-height: 500px!important;
        object-fit: contain;
        
        /* Visual Styling */
        filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25)); /* Soft shadow around image */
        border-radius: 20px; /* Optional: rounds corners if your image is square */
        
        /* Animation Props */
        position: relative;
        z-index: 10;
        transition: all 0.5s ease;
    }
    
    /* 2. FLOATING COIN */
    .gold-coin-hmw {
        position: absolute;
        top: 15%; right: 15%;
        width: 90px; height: 90px;
        background: radial-gradient(circle at 30% 30%, #fbbf24, #d97706);
        border-radius: 50%;
        border: 4px solid #f59e0b;
        box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
        display: flex; align-items: center; justify-content: center;
        font-size: 2.5rem; color: white; font-weight: 800;
        animation: float-hmw 4s ease-in-out infinite;
        z-index: 20;
        font-family: sans-serif;
    }
    .gold-coin-hmw::after { content: '₹'; filter: drop-shadow(0 2px 2px rgba(0,0,0,0.3)); }

    /* 3. RETAILER GRAPH (Hidden initially) */
    .growth-card-hmw {
        width: 300px;
        background: #fff;
        padding: 25px;
        border-radius: 9px;
        box-shadow: -3px 3px 12px 5px rgba(0, 0, 0, 0.15);
        display: none;
        position: absolute;
        border: solid 2px #80008070;
    }

    .bar-hmw {
        width: 35px;
        background: linear-gradient(to bottom, var(--purple-light-hmw), var(--purple-hmw));
        border-radius: 6px 6px 0 0;
        transition: height 1s ease;
    }

    /* --- TOGGLE SWITCH --- */
    .toggle-wrapper-hmw {
        background: #e2e8f0;
        padding: 6px;
        border-radius: 60px;
        display: inline-flex;
        position: relative;
        cursor: pointer;
        box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
    }

    .text-secondary{
        font-size:16px!important;
    }

    h3 .fw-bold{
        font-size: 20px!important;
    }
    
    .toggle-pill-hmw {
        position: absolute;
        top: 6px; left: 6px;
        width: 140px; height: 45px;
        background: white;
        border-radius: 50px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        z-index: 1;
    }
    
    .toggle-text-hmw {
        width: 140px; height: 45px;
        display: flex; align-items: center; justify-content: center;
        font-weight: 800; color: #94a3b8; z-index: 2; position: relative;
        transition: color 0.3s;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    .toggle-text-hmw.active-hmw { color: var(--purple-hmw); }
    .toggle-wrapper-hmw.retailer-mode-hmw .toggle-pill-hmw { transform: translateX(140px); }

    /* --- UTILS --- */
    .step-icon-hmw {
        width: 55px; height: 55px;
        background: #6d28d9;
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 1.4rem;
        color: white;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    }
    .step-item-hmw {
        border-left: 4px solid var(--purple-hmw);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .step-item-hmw:hover { transform: translateX(8px); box-shadow: 0 10px 25px rgba(0,0,0,0.08)!important; }
    
    @keyframes float-hmw { 0%, 100% { transform: translateY(0) rotate(5deg); } 50% { transform: translateY(-20px) rotate(-5deg); } }