
.pic-gvc-wrap {
    --gvc-navy: #13365f;
    --gvc-blue: #218fc9;
    --gvc-blue-dark: #1376ad;
    --gvc-soft: #f4f9fc;
    --gvc-border: #d8e6f0;
    --gvc-text: #203d58;
    max-width: 1180px;
    margin: 0 auto;
    padding: 45px 20px 75px;
    color: var(--gvc-text);
    font-family: inherit;
}

.pic-gvc-hero {
    padding: 44px 28px;
    border-radius: 25px;
    background: linear-gradient(135deg, #14355e, #2699d0);
    color: #fff;
    text-align: center;
    box-shadow: 0 18px 45px rgba(19, 54, 95, .18);
}

.pic-gvc-hero h1 {
    margin: 12px auto;
    max-width: 920px;
    color: #fff;
    font-size: clamp(35px, 6vw, 62px);
    line-height: 1.08;
}

.pic-gvc-hero p {
    max-width: 780px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.7;
}

.pic-gvc-badge,
.pic-gvc-report-kicker {
    display: inline-block;
    padding: 7px 13px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    font-weight: 800;
}

.pic-gvc-shell {
    margin-top: 28px;
    padding: 30px;
    border: 1px solid var(--gvc-border);
    border-radius: 23px;
    background: #fff;
    box-shadow: 0 15px 45px rgba(19, 54, 95, .09);
}

.pic-gvc-progress {
    margin-bottom: 30px;
}

.pic-gvc-progress-bar {
    height: 9px;
    overflow: hidden;
    border-radius: 999px;
    background: #e8f0f5;
}

.pic-gvc-progress-bar span {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #1e8fc7, #3bb4dd);
    transition: width .25s ease;
}

.pic-gvc-progress-text {
    margin-top: 8px;
    color: #6c8191;
    font-size: 14px;
    text-align: right;
}

.pic-gvc-step {
    display: none;
}

.pic-gvc-step.is-active {
    display: block;
    animation: picGvcFade .22s ease;
}

@keyframes picGvcFade {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.pic-gvc-step-heading {
    margin-bottom: 25px;
}

.pic-gvc-step-heading > span {
    color: var(--gvc-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pic-gvc-step-heading h2 {
    margin: 6px 0;
    color: var(--gvc-navy);
    font-size: clamp(28px, 4vw, 40px);
}

.pic-gvc-step-heading p {
    margin: 0;
    color: #6d8292;
}

.pic-gvc-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.pic-gvc-field {
    display: block;
}

.pic-gvc-field-wide {
    grid-column: 1 / -1;
}

.pic-gvc-field > span {
    display: block;
    margin-bottom: 7px;
    color: var(--gvc-navy);
    font-weight: 800;
}

.pic-gvc-field input,
.pic-gvc-field select {
    width: 100%;
    min-height: 51px;
    padding: 10px 13px;
    border: 1px solid #c5d8e7;
    border-radius: 11px;
    background: #fff;
    color: var(--gvc-text);
    font: inherit;
}

.pic-gvc-field input:focus,
.pic-gvc-field select:focus {
    outline: 3px solid rgba(33,143,201,.14);
    border-color: var(--gvc-blue);
}

.pic-gvc-field small {
    display: block;
    margin-top: 6px;
    color: #6c8191;
}

.pic-gvc-check-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.pic-gvc-check,
.pic-gvc-consent {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    padding: 15px;
    border: 1px solid var(--gvc-border);
    border-radius: 12px;
    background: var(--gvc-soft);
    cursor: pointer;
}

.pic-gvc-check input,
.pic-gvc-consent input {
    width: 19px;
    height: 19px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.pic-gvc-consent {
    margin-top: 20px;
    background: #fffaf0;
}

.pic-gvc-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
}

.pic-gvc-button {
    display: inline-flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    padding: 11px 20px;
    border: 0;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--gvc-blue), var(--gvc-blue-dark));
    color: #fff !important;
    font: inherit;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
}

.pic-gvc-button:disabled {
    opacity: .6;
    cursor: wait;
}

.pic-gvc-button-secondary {
    border: 1px solid #c7d9e6;
    background: #fff;
    color: var(--gvc-navy) !important;
}

.pic-gvc-button-light {
    background: #eaf5fb;
    color: #0e6c9f !important;
}

.pic-gvc-form-error {
    margin-top: 20px;
    padding: 14px;
    border: 1px solid #efb6b6;
    border-radius: 11px;
    background: #fff2f2;
    color: #9d2929;
}

.pic-gvc-report {
    animation: picGvcFade .3s ease;
}

.pic-gvc-report-heading {
    text-align: center;
}

.pic-gvc-report-kicker {
    border-color: #c7dfed;
    background: #eef8fd;
    color: #1474aa;
}

.pic-gvc-report-heading h2 {
    margin: 12px 0 28px;
    color: var(--gvc-navy);
    font-size: clamp(29px, 4.5vw, 45px);
}

.pic-gvc-report-top {
    display: grid;
    grid-template-columns: minmax(250px, .8fr) minmax(320px, 1.2fr);
    gap: 28px;
    align-items: center;
    padding: 25px;
    border-radius: 20px;
    background: linear-gradient(145deg, #f6fbfe, #edf6fb);
}

.pic-gvc-gauge {
    position: relative;
    max-width: 360px;
    margin: 0 auto;
}

.pic-gvc-gauge svg {
    width: 100%;
    overflow: visible;
}

.pic-gvc-gauge-track,
.pic-gvc-gauge-value {
    fill: none;
    stroke-width: 18;
    stroke-linecap: round;
}

.pic-gvc-gauge-track {
    stroke: #dae7ef;
}

.pic-gvc-gauge-value {
    stroke: #218fc9;
    stroke-dasharray: 0 100;
    transition: stroke-dasharray 1s ease;
}

.pic-gvc-gauge-value[data-band="high"] { stroke: #23985a; }
.pic-gvc-gauge-value[data-band="strong"] { stroke: #218fc9; }
.pic-gvc-gauge-value[data-band="conditional"] { stroke: #e29a25; }
.pic-gvc-gauge-value[data-band="special"] { stroke: #cf6d4f; }

.pic-gvc-gauge-number {
    position: absolute;
    left: 50%;
    bottom: 7px;
    transform: translateX(-50%);
    color: var(--gvc-navy);
    text-align: center;
}

.pic-gvc-gauge-number strong {
    display: block;
    font-size: 54px;
    line-height: .9;
}

.pic-gvc-gauge-number span {
    color: #718594;
    font-weight: 800;
}

.pic-gvc-status-card {
    padding: 24px;
    border: 1px solid #d9e7ef;
    border-radius: 16px;
    background: #fff;
}

.pic-gvc-status-label {
    color: var(--gvc-blue);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.pic-gvc-status-card h3 {
    margin: 8px 0 10px;
    color: var(--gvc-navy);
    font-size: clamp(25px, 3.5vw, 38px);
    line-height: 1.18;
}

.pic-gvc-status-card p {
    margin: 0;
    color: #63798a;
    line-height: 1.7;
}

.pic-gvc-gates {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 11px;
    margin: 25px 0;
}

.pic-gvc-gate {
    display: flex;
    gap: 10px;
    min-height: 115px;
    padding: 14px;
    border: 1px solid var(--gvc-border);
    border-radius: 13px;
    background: #fff;
}

.pic-gvc-gate-icon {
    display: inline-flex;
    width: 27px;
    height: 27px;
    flex: 0 0 27px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
}

.pic-gvc-gate.is-passed .pic-gvc-gate-icon {
    background: #ddf5e7;
    color: #1d844c;
}

.pic-gvc-gate.is-pending .pic-gvc-gate-icon {
    background: #fff0d6;
    color: #ad6a00;
}

.pic-gvc-gate strong {
    color: var(--gvc-navy);
    font-size: 14px;
}

.pic-gvc-gate p {
    margin: 5px 0 0;
    color: #708392;
    font-size: 12px;
    line-height: 1.45;
}

.pic-gvc-report-section {
    margin-top: 25px;
    padding: 22px;
    border: 1px solid var(--gvc-border);
    border-radius: 16px;
    background: #fff;
}

.pic-gvc-report-section h3 {
    margin: 0 0 17px;
    color: var(--gvc-navy);
    font-size: 23px;
}

.pic-gvc-section-scores {
    display: grid;
    gap: 15px;
}

.pic-gvc-score-row-top {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.pic-gvc-score-track {
    height: 10px;
    overflow: hidden;
    border-radius: 999px;
    background: #e6eef4;
}

.pic-gvc-score-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #218fc9, #45b8dc);
}

.pic-gvc-report-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.pic-gvc-report-list {
    margin: 0;
    padding-left: 22px;
}

.pic-gvc-report-list li {
    margin-bottom: 10px;
    line-height: 1.55;
}

.pic-gvc-success-list li::marker {
    color: #268e55;
}

.pic-gvc-action-list li::marker {
    color: #d48918;
    font-weight: 900;
}

.pic-gvc-report-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.pic-gvc-disclaimer {
    margin: 25px 0 0;
    padding: 16px;
    border-radius: 12px;
    background: #fff8de;
    color: #685615;
    font-size: 14px;
    line-height: 1.6;
}

.pic-gvc-official-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 14px;
}

.pic-gvc-official-links a {
    color: #1474aa;
    font-weight: 800;
}

@media (max-width: 1000px) {
    .pic-gvc-gates {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .pic-gvc-shell {
        padding: 21px;
    }

    .pic-gvc-grid,
    .pic-gvc-check-grid,
    .pic-gvc-report-top,
    .pic-gvc-report-columns {
        grid-template-columns: 1fr;
    }

    .pic-gvc-field-wide {
        grid-column: auto;
    }

    .pic-gvc-actions {
        flex-direction: column-reverse;
    }

    .pic-gvc-actions .pic-gvc-button {
        width: 100%;
    }

    .pic-gvc-gates {
        grid-template-columns: 1fr;
    }

    .pic-gvc-gate {
        min-height: 0;
    }
}

@media print {
    body * {
        visibility: hidden !important;
    }

    #pic-gvc-report,
    #pic-gvc-report * {
        visibility: visible !important;
    }

    #pic-gvc-report {
        position: absolute;
        inset: 0;
        width: 100%;
    }

    .pic-gvc-report-buttons,
    .pic-gvc-official-links {
        display: none !important;
    }
}
