/* VPS Proof/Performance — template-parts/vps/vps-proof.php */

.dcx-proof {
    max-width: 1235px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.dcx-proof *, .dcx-proof *::before, .dcx-proof *::after { box-sizing: border-box; }

.dcx-proof-head {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dcx-proof-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    min-height: 36px;
    padding: 0 20px;
    border-radius: 999px;
    background: rgba(237, 26, 59, 0.1);
    color: #e71939;
    font-size: 16px;
    font-weight: 500;
    line-height: 34px;
    white-space: nowrap;
}

.dcx-proof-title {
    margin: 0;
    color: #1d293d;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.6px;
}

.dcx-proof-subtitle {
    margin: 0;
    color: #45556c;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
}

.dcx-proof-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.dcx-proof-card {
    border: 1px solid #cad5e2;
    border-radius: 20px;
    background: #ffffff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dcx-proof-card__title {
    margin: 0;
    color: #1d293d;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.dcx-proof-card__copy {
    margin: 0;
    color: #45556c;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

.dcx-proof-bench {
    border: 1px solid #cad5e2;
    border-radius: 20px;
    background: #ffffff;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.dcx-proof-bench__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.dcx-proof-bench__title {
    margin: 0;
    color: #1d293d;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.dcx-proof-bench__note {
    margin: 0;
    color: #62748e;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
}

.dcx-proof-rows { display: flex; flex-direction: column; gap: 16px; }

.dcx-proof-row {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) 110px;
    align-items: center;
    gap: 16px;
}

.dcx-proof-row__label { color: #1d293d; font-size: 16px; font-weight: 700; line-height: 1.4; }

.dcx-proof-row__bar {
    position: relative;
    height: 14px;
    border-radius: 999px;
    background: #dbe2ea;
    overflow: hidden;
}

.dcx-proof-row__fill {
    position: absolute;
    inset: 0 auto 0 0;
    border-radius: 999px;
    background: linear-gradient(88deg, #b10d28 0.47%, #ed1a3b 98.23%);
}

.dcx-proof-row__score { text-align: right; color: #1d293d; font-size: 16px; font-weight: 700; line-height: 1.4; white-space: nowrap; }

.dcx-proof-highlight {
    border: 1px solid rgba(231, 25, 57, 0.16);
    background: #f8fafc;
    border-radius: 20px;
    padding: 20px 24px;
    color: #45556c;
    font-size: 16px;
    line-height: 1.8;
}

.dcx-proof-highlight strong { color: #1d293d; }

@media (max-width: 1024px) {
    .dcx-proof-title { font-size: 34px; }
    .dcx-proof-subtitle { font-size: 16px; line-height: 1.7; }
    .dcx-proof-benefits { grid-template-columns: 1fr; }
    .dcx-proof-row { grid-template-columns: 140px minmax(0, 1fr) 90px; }
}

@media (max-width: 640px) {
    .dcx-proof { gap: 24px; }
    .dcx-proof-title { font-size: 28px; line-height: 1.2; }
    .dcx-proof-bench { padding: 18px; }
    .dcx-proof-card { padding: 18px; }
    .dcx-proof-row { grid-template-columns: 1fr; gap: 8px; }
    .dcx-proof-row__score { text-align: left; }
}
