/**
 * AC Home Page Pro - How It Works Module
 * Colors: Gen Z Purple/Pink | SMB Blue
 * Version: 1.0.0
 */

/* ===================================
   FORCE FULL WIDTH
   =================================== */

.ac-hp-how-it-works {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 !important;
    overflow: hidden;
}

.ac-hp-how-container {
    display: flex;
    min-height: 600px;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* ===================================
   HOW IT WORKS SIDES (50% EACH)
   =================================== */

.ac-hp-how-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

/* Creators Side - Gen Z Purple/Pink Gradient */
.ac-hp-how-creators {
    background: #E879F9;
    background: linear-gradient(135deg, #E879F9 0%, #C084FC 100%);
}

/* Brands Side - SMB Blue Gradient */
.ac-hp-how-brands {
    background: #60A5FA;
    background: linear-gradient(135deg, #60A5FA 0%, #3B82F6 100%);
}

/* ===================================
   CONTENT WRAPPER
   =================================== */

.ac-hp-how-content {
    max-width: 550px;
    text-align: left;
}

/* ===================================
   LABEL
   =================================== */

.ac-hp-how-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 20px;
}

/* ===================================
   TITLE
   =================================== */

.ac-hp-how-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 40px 0;
    color: #ffffff;
    letter-spacing: -1px;
}

/* ===================================
   STEPS
   =================================== */

.ac-hp-how-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ac-hp-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.ac-hp-step-number {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.ac-hp-step-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.ac-hp-step-content p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.95;
    margin: 0;
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */

/* Tablets */
@media (max-width: 1024px) {
    .ac-hp-how-container {
        min-height: 500px;
    }

    .ac-hp-how-side {
        padding: 60px 0;
    }

    .ac-hp-how-title {
        font-size: 42px;
    }

    .ac-hp-step-content h3 {
        font-size: 18px;
    }

    .ac-hp-step-content p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ac-hp-how-container {
        flex-direction: column;
        min-height: auto;
    }

    .ac-hp-how-side {
        padding: 60px 30px;
    }

    .ac-hp-how-content {
        max-width: 100%;
        text-align: center;
    }

    .ac-hp-how-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .ac-hp-step {
        text-align: left;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .ac-hp-how-side {
        padding: 50px 20px;
    }

    .ac-hp-how-label {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .ac-hp-how-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .ac-hp-step {
        gap: 15px;
    }

    .ac-hp-step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .ac-hp-step-content h3 {
        font-size: 17px;
    }

    .ac-hp-step-content p {
        font-size: 14px;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .ac-hp-how-title {
        font-size: 26px;
    }

    .ac-hp-how-title br {
        display: none;
    }
}
