/*==========================================================
Section : Product Overview
Version : 2.0
Author  : Erwin Echon
==========================================================*/
/* ==========================================================
   Section Header
========================================================== */
.mbi-section-header {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}
.mbi-section-title {
    margin: 1rem 0;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--mbi-primary);
}

.mbi-section-title span {
    color: var(--mbi-secondary);
}

.mbi-section-description {
    max-width: 850px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--mbi-text-light);
}

/* ==========================================================
   Product Overview
========================================================== */
.mbi-overview {
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    background: #ffffff;
}

.mbi-overview::before {
    content: "";
    position: absolute;
    top: 100px;
    right: -180px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background:
        radial-gradient(rgba(0, 45, 172, .05),
            transparent 70%);
}

/* ==========================================================
   Layout
========================================================== */
.mbi-overview-layout {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: 6rem;
}

/* ==========================================================
   Content
========================================================== */

.mbi-overview-content {
    max-width: 600px;
}

.mbi-overview-label {
    display: inline-flex;
    align-items: center;
    padding: .65rem 1.2rem;
    margin-bottom: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 4, 172, .08);
    color: var(--mbi-primary);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mbi-overview-title {
    margin-bottom: 30px;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: var(--mbi-primary);
}

.mbi-overview-title span {
    color: var(--mbi-secondary);
}

.mbi-overview-intro {
    margin-bottom: 36px;
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--mbi-text-light);
}

/* ==========================================================
   Highlights
========================================================== */
.mbi-overview-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 3rem;
}

.mbi-overview-highlight {
    display:flex;
    align-items:center;
    gap:18px;
    padding:10px 0;
}

.mbi-overview-highlight i {
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:rgba(4,120,99,.08);
    color:var(--mbi-secondary);
    font-size:1.15rem;
    flex-shrink:0;
}

.mbi-overview-highlight span {
    font-weight: 600;
    color: var(--mbi-heading-color);
}

/* ==========================================================
   Image
========================================================== */
.mbi-overview-image {
    display: flex;
    justify-content: center;
}

.mbi-overview-image-wrapper {
    position:relative;
    padding:1rem;
    border-radius:30px;
    background:#fff;
    border:1px solid rgba(0,45,172,.08);
    box-shadow:
        0 24px 60px rgba(15,23,42,.10);
}

.mbi-overview-image-wrapper:hover img {
    transform:scale(1.02);
}

.mbi-overview-image-wrapper::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(0, 45, 172, .15),
            rgba(4, 120, 99, .15));
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.mbi-overview-image img {
    display:block;
    width:100%;
    border-radius:22px;
    transition:transform .4s ease;
}

/* ==========================================================
   Actions
========================================================== */
.mbi-overview-actions {
    margin-top: 3rem;
}