/* ==========================================================
   GLOBAL
   ========================================================== */
.mas-section {
    padding: 36px 0;
}

/* ==========================================================
   EXPERIENCE SECTION
   ========================================================== */
.gb-headline-bf34ca23 .gb-icon svg path {
    fill: #FF7F00;
    stroke: #1A4DB3;
    stroke-width: 4px;
    stroke-linejoin: round;
}

.mas-experience-icon {
    width: 64px;
    height: 64px;
    fill: #FF7F00;
    stroke: #1A4DB3;
    stroke-width: 4px;
    stroke-linejoin: round;
}

.mas-experience-section {
    background: #F7F9FC;
}

.mas-experience-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.mas-experience-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
    padding: 32px 24px;
    text-align: center;
    border: 1px solid rgba(26, 77, 179, 0.1);
}

.mas-experience-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.mas-experience-badge {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mas-experience-title {
    margin: 0;
    color: #1A4DB3;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 700;
    line-height: 1.3;
}

.mas-experience-highlight {
    display: inline-block;
    margin-bottom: 20px;
    padding: 10px 24px;
    border-radius: 50px;
    background: linear-gradient(135deg, #3981D6 0%, #1A4DB3 100%);
    box-shadow: 0 6px 18px rgba(26,77,179,.20);
}

.mas-experience-years {
    display: block;
    margin: 0;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .5px;
}

.mas-experience-body {
    max-width: 750px;
    margin: 0 auto;
}

.mas-experience-description {
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
    color: #444444;
}

/* ==========================================================
   STATISTICS SECTION
   ========================================================== */
.mas-statistics-section {
    background: #F7F9FC;
    padding-top: 0;
}

.mas-statistics-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.mas-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.mas-stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 14px;
    text-align: center;
    background: #ffffff;
    border-top: 4px solid #FF7F00;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(191,80,0,.06);
    transition: transform .25s ease, box-shadow .25s ease, border-top-color .25s ease;
}

.mas-stat-card:hover {
    transform: translateY(-4px);
    border-top-color: #0080FF;
    box-shadow: 0 8px 25px rgba(0,128,255,.12);
}

.mas-stat-link {
    display: contents;
    text-decoration: none;
}

.mas-stat-number {
    display: block;
    margin-bottom: 4px;
    line-height: 1.2;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF7F00 0%, #0080FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mas-stat-label {
    color: #1A4DB3;
    font-size: .88rem;
    font-weight: 600;
    line-height: 1.3;
}

.mas-stat-noscript {
    margin-top: 20px;
    text-align: center;
    color: #1A4DB3;
    font-weight: 600;
    font-size: 12px;
}

/* ==========================================================
   TABLET
   ========================================================== */
@media (max-width: 1024px) {
    .mas-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .mas-stat-number {
        font-size: 1.8rem;
    }
}

/* ==========================================================
   MOBILE & SMALL MOBILE (RINGKAS & RAPI)
   ========================================================== */
@media (max-width: 768px) {
    .mas-section {
        padding: 20px 0;
    }

    .mas-experience-wrapper,
    .mas-statistics-wrapper {
        padding: 0 12px;
    }

    .mas-experience-card {
        padding: 20px 14px;
        border-radius: 14px;
    }

    .mas-experience-header {
        gap: 8px;
        margin-bottom: 14px;
    }

    .mas-experience-icon {
        width: 42px;
        height: 42px;
    }

    .mas-experience-title {
        font-size: 1.25rem;
    }

    .mas-experience-highlight {
        margin-bottom: 14px;
        padding: 6px 18px;
        border-radius: 50px;
    }

    .mas-experience-years {
        font-size: 1.1rem;
    }

    .mas-experience-description {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    /* Grid Statistik Mobile: 2 Kolom Kompak */
    .mas-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .mas-stat-card {
        min-height: auto; /* Dibuat fleksibel sesuai isi */
        padding: 12px 8px;
        border-radius: 10px;
    }

    .mas-stat-number {
        font-size: 1.4rem;
        margin-bottom: 2px;
    }

    .mas-stat-label {
        font-size: .8rem;
    }
}