/* =========================================
   4. Brand Introduction — Revamped Edition
   ========================================= */

/* Section Layout */
.brand-intro {
    padding: 80px 0;
    background-color: #FFFFFF;
    /* Clean White */
    color: #333333;
    /* Dark Gray text base */
    overflow: hidden;
}

/* Container & Layout */
.brand-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    /* Space between columns */
    max-width: 1000px;
    /* Constrain width as hinted */
    margin: 0 auto;
}

/* -------------------------------------------
   Main Title
   ------------------------------------------- */
.brand-main-title {
    text-align: center;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 900;
    /* Extra Bold */
    color: #333333;
    margin-bottom: 60px;
    letter-spacing: 0.05em;
    /* Montserrat or similar sans-serif */
}

.highlight-purple {
    color: #8a10a0;
}

.brand-main-title::after {
    display: none;
    /* Remove previous underline if any */
}

/* -------------------------------------------
   Left Column: Income Equation Graphic
   ------------------------------------------- */
.brand-graphic-col {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    justify-content: center;
}

/* Income Equation Box - New Stacked Bar Design */
.income-equation-box {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background-color: #FFFFFF;
    border: 3px solid #EDD1F3;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
}

/* Left: Stacked Income Bar */
.income-stacked-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 130px;
    flex-shrink: 0;
}

/* Top Section: Yellow (ZEAL MATE Side Income) - approx 30% */
.income-bar-top {
    width: 100%;
    height: 80px;
    background-color: #FFC000;
    border: 3px solid #221E1F;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.income-bar-text-main {
    font-size: 14px;
    font-weight: 700;
    color: #221E1F;
    display: block;
    letter-spacing: 0.02em;
}

.income-bar-text-sub {
    font-size: 12px;
    font-weight: 700;
    color: #221E1F;
    display: block;
}

/* Plus Sign Divider - overlaps between sections */
.income-bar-plus {
    position: absolute;
    top: 68px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 900;
    color: #221E1F;
    z-index: 3;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* Bottom Section: Purple (Main Income) - approx 70% */
.income-bar-bottom {
    width: 100%;
    height: 160px;
    background-color: #800080;
    border: 3px solid #221E1F;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 8px 12px;
    text-align: center;
    position: relative;
}

.income-bar-text-white {
    font-size: 16px;
    font-weight: 700;
    color: #FFFFFF;
}

/* Right Column: Speech Bubble & Description */
.income-right-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    flex: 1;
}

/* Speech Bubble */
.income-speech-bubble {
    position: relative;
    background-color: #FEF5D1;
    border: 3px solid #221E1F;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 3px 3px 0 rgba(34, 30, 31, 0.1);
}

/* Speech Bubble Arrow pointing left */
.speech-bubble-arrow {
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-right: 16px solid #221E1F;
}

.speech-bubble-arrow::after {
    content: '';
    position: absolute;
    left: 4px;
    top: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 14px solid #FEF5D1;
}

/* Speech Bubble Content */
.speech-bubble-content {
    text-align: center;
}

.speech-label {
    font-size: 14px;
    font-weight: 700;
    color: #221E1F;
    display: block;
    margin-bottom: 4px;
}

.speech-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.speech-amount {
    font-size: 32px;
    font-weight: 900;
    color: #800080;
    font-family: var(--font-en-alt), sans-serif;
    letter-spacing: -0.02em;
}

.speech-unit {
    font-size: 16px;
    font-weight: 700;
    color: #221E1F;
}

/* Bottom Description Text */
.income-bottom-text {
    font-size: 14px;
    font-weight: 700;
    color: #221E1F;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* -------------------------------------------
   Right Column: Text Content
   ------------------------------------------- */
.brand-text-col {
    flex: 1;
    min-width: 320px;
}

.brand-sub-headline {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 24px;
    line-height: 1.5;
}

.brand-body-text p {
    font-size: 1rem;
    /* Regular size */
    font-weight: 400;
    /* Regular weight */
    line-height: 1.8;
    /* Relaxed */
    color: #444444;
    /* Standard Body Gray */
    margin-bottom: 24px;
}

.brand-body-text p:last-child {
    margin-bottom: 0;
}

/* -------------------------------------------
   Responsive Design
   ------------------------------------------- */
@media (max-width: 900px) {
    .brand-content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
        /* Generally center content on mobile if preferred, or keep left */
    }

    .brand-graphic-col,
    .brand-text-col {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }

    .brand-graphic-col {
        order: 1;
        /* Graphic on top? User said "Graphic on top" or vice-versa. Usually top is better for context. */
    }

    .brand-text-col {
        order: 2;
        text-align: left;
        /* Keep text left-aligned for readability usually, or center per UX */
    }

    /* Center the sub-headline on mobile just in case */
    .brand-sub-headline {
        text-align: center;
        font-size: 20px;
    }

    .brand-body-text p {
        text-align: justify;
        /* Or left */
    }

    /* Center income speech bubble and text on mobile */
    .income-right-col {
        align-items: center;
        text-align: center;
        flex: none;
    }

    .income-bottom-text {
        text-align: center;
    }

    /* Center content with equal spacing */
    .income-equation-box {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand-intro {
        padding: 50px 0;
    }

    .brand-main-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    /* Income Equation Box - Mobile Responsive */
    .income-equation-box {
        padding: 20px;
        gap: 16px;
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    .income-stacked-bar {
        width: 100px;
    }

    .income-bar-top {
        height: 60px;
        padding: 8px 6px;
    }

    .income-bar-text-main {
        font-size: 11px;
    }

    .income-bar-text-sub {
        font-size: 10px;
    }

    .income-bar-plus {
        top: 50px;
        width: 32px;
        height: 32px;
        font-size: 22px;
    }

    .income-bar-bottom {
        height: 120px;
        padding: 24px 6px 10px;
    }

    .income-bar-text-white {
        font-size: 13px;
    }

    .income-right-col {
        align-items: center;
        text-align: center;
    }

    .income-speech-bubble {
        padding: 12px 14px;
    }

    .speech-label {
        font-size: 12px;
    }

    .speech-amount {
        font-size: 24px;
    }

    .speech-unit {
        font-size: 13px;
    }

    .income-bottom-text {
        font-size: 12px;
        text-align: center;
    }
}