/* ==========================================================================
   WHY MASTER RESELLER SECTION STYLES
   ========================================================================== */

.why-master-section {
    background: #071a52 !important; /* Solid Brand Navy */
    padding: 100px 0 90px 0 !important;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ambient Radial Background Glow */
.why-master-glow {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 123, 44, 0.12) 0%, rgba(7, 26, 82, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 123, 44, 0.15);
    border: 1px solid #ff7b2c;
    color: #ff7b2c;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.why-master-content h2 {
    color: #ffffff !important;
    font-size: 40px !important;
    font-weight: 800 !important;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.why-master-content h2 span {
    color: #ff7b2c;
}

.why-subtitle {
    color: #cbd5e1 !important;
    font-size: 16.5px !important;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 580px;
}

/* Benefit Cards Grid */
.why-benefit-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: #0f256e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 20px;
    border-radius: 12px;
    transition: all 0.25s ease;
}

.benefit-card:hover {
    border-color: #ff7b2c;
    transform: translateY(-2px);
    background: #122b7d;
}

.benefit-card i {
    color: #ff7b2c;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.benefit-card strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 2px;
}

.benefit-card span {
    display: block;
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.45;
}

/* Action Button & Guarantee */
.why-action-wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-why-primary {
    background: linear-gradient(135deg, #ff7b2c, #ff5e00) !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none !important;
    box-shadow: 0 4px 18px rgba(255, 123, 44, 0.35);
    transition: all 0.25s ease;
}

.btn-why-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 123, 44, 0.55);
    color: #ffffff !important;
}

.why-guarantee-text {
    color: #cbd5e1;
    font-size: 13.5px;
    font-weight: 600;
}

/* RIGHT ROI DASHBOARD CARD */
.master-roi-card {
    background: #040e2d;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

.roi-header {
    background: #091742;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-dots {
    display: flex;
    gap: 6px;
}

.roi-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.roi-dots .dot.red { background: #ef4444; }
.roi-dots .dot.yellow { background: #f59e0b; }
.roi-dots .dot.green { background: #10b981; }

.roi-title {
    color: #94a3b8;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.roi-body {
    padding: 24px;
}

.roi-stat-block {
    background: #0f256e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px;
}

.stat-label {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-value {
    font-size: 22px;
    font-weight: 800;
    margin: 4px 0 2px 0;
}

.stat-value.text-orange {
    color: #ff7b2c;
}

.roi-pill-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.roi-pill {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 600;
}

/* RESPONSIVE STYLES */
@media (max-width: 991px) {
    .why-master-section {
        padding: 60px 0 !important;
        text-align: center;
    }
    .why-master-content h2 {
        font-size: 32px !important;
    }
    .why-subtitle {
        margin: 0 auto 25px auto;
    }
    .benefit-card {
        text-align: left;
    }
    .why-action-wrap {
        justify-content: center;
    }
}