/* Prime Energy - Responsible Operations */

.pro-section {
    padding: 100px 60px;
    background: #ffffff;
    box-sizing: border-box;
}
.pro-section *,
.pro-section *::before,
.pro-section *::after {
    box-sizing: border-box;
}

.pro-wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

/* ===== IMAGE SIDE ===== */
.pro-media {
    position: relative;
    padding-bottom: 44px;
    padding-right: 44px;
}
.pro-media img {
    width: 100%;
    display: block;
    border-radius: 6px;
}
.pro-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 6px;
}

.pro-glass-stat {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(11,51,97,0.65) 0%, rgba(15,92,163,0.40) 100%);
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    padding: 18px 22px;
    box-shadow: 0 16px 34px rgba(11, 51, 97, 0.25);
    display: flex;
    gap: 22px;
}
.pro-stat-val {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}
.pro-stat-lbl {
    color: rgba(255,255,255,0.75);
    font-size: 10.5px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-top: 5px;
}

/* ===== TEXT SIDE ===== */
.pro-eyebrow {
    color: #0F5CA3;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.pro-title {
    color: #0B3361;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 22px 0;
}
.pro-lead {
    color: #46586c;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 44px 0;
    max-width: 520px;
}

.pro-list {
    position: relative;
    padding-left: 26px;
    border-left: 2px solid #E4ECF4;
}

.pro-item {
    position: relative;
    padding-bottom: 32px;
}
.pro-item:last-child { padding-bottom: 0; }

.pro-item::before {
    content: "";
    position: absolute;
    left: -31px;
    top: 4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #0F5CA3;
    box-shadow: 0 0 0 4px #ffffff, 0 0 0 5px #E4ECF4;
}

.pro-item h3 {
    color: #0B3361;
    font-size: 16.5px;
    font-weight: 700;
    margin: 0 0 6px 0;
}
.pro-item p {
    color: #5b6b7c;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
    max-width: 440px;
}

@media (max-width: 900px) {
    .pro-wrap { grid-template-columns: 1fr; gap: 40px; }
    .pro-title { font-size: 30px; }
    .pro-section { padding: 70px 24px; }
}
