.solar-wizard,
.solar-wizard * {
    box-sizing: border-box;
}

.solar-wizard {
    --sepv-bg: #f7f8f5;
    --sepv-surface: #ffffff;
    --sepv-text: #1e2620;
    --sepv-muted: #66706b;
    --sepv-border: #dfe5dc;
    --sepv-primary: #237a57;
    --sepv-primary-dark: #16583e;
    --sepv-accent: #f0b429;
    --sepv-warn: #9a4b12;
    --sepv-warn-bg: #fff4df;
    --sepv-error: #b42318;
    --sepv-error-bg: #fff1f0;
    width: min(100%, 980px);
    margin: 24px auto;
    padding: 24px;
    color: var(--sepv-text);
    background: var(--sepv-bg);
    border: 1px solid var(--sepv-border);
    border-radius: 8px;
    font-family: inherit;
}

.solar-wizard [hidden] {
    display: none !important;
}

.solar-wizard__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.solar-wizard__eyebrow {
    margin: 0 0 6px;
    color: var(--sepv-primary-dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.solar-wizard h2,
.solar-wizard h3,
.solar-wizard h4 {
    margin: 0;
    color: var(--sepv-text);
    line-height: 1.25;
    letter-spacing: 0;
}

.solar-wizard h2 {
    font-size: clamp(24px, 3vw, 34px);
}

.solar-wizard h3 {
    margin-bottom: 20px;
    font-size: 24px;
}

.solar-wizard h4 {
    margin-bottom: 12px;
    font-size: 18px;
}

.solar-wizard p {
    line-height: 1.6;
}

.solar-wizard__step-indicator {
    min-width: 72px;
    padding: 10px 12px;
    border: 1px solid var(--sepv-border);
    border-radius: 8px;
    background: var(--sepv-surface);
    color: var(--sepv-primary-dark);
    font-weight: 700;
    text-align: center;
}

.solar-wizard__progress {
    height: 10px;
    overflow: hidden;
    margin-bottom: 22px;
    background: #e4e9e2;
    border-radius: 999px;
}

.solar-wizard__progress span {
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--sepv-primary), var(--sepv-accent));
    border-radius: inherit;
    transition: width 180ms ease;
}

.solar-wizard__notice,
.solar-wizard__success {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 8px;
}

.solar-wizard__notice {
    background: var(--sepv-error-bg);
    color: var(--sepv-error);
    border: 1px solid #ffd3cf;
}

.solar-wizard__success {
    background: #e9f7ef;
    color: #176043;
    border: 1px solid #bde4cc;
}

.solar-wizard__step {
    display: none;
    padding: 22px;
    background: var(--sepv-surface);
    border: 1px solid var(--sepv-border);
    border-radius: 8px;
}

.solar-wizard__step.is-active {
    display: block;
}

.solar-wizard__intro {
    width: 100%;
    max-width: none;
}

.solar-wizard__muted {
    color: var(--sepv-muted);
}

.solar-wizard__field {
    margin-bottom: 20px;
}

.solar-wizard__field--wide {
    grid-column: 1 / -1;
}

.solar-wizard__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.solar-wizard input[type='text'],
.solar-wizard input[type='email'],
.solar-wizard input[type='tel'],
.solar-wizard input[type='number'],
.solar-wizard input[type='url'],
.solar-wizard select,
.solar-wizard textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    color: var(--sepv-text);
    background: #ffffff;
    border: 1px solid #cfd8d2;
    border-radius: 8px;
    font: inherit;
}

.solar-wizard textarea {
    min-height: 100px;
    resize: vertical;
}

.solar-wizard input:focus,
.solar-wizard select:focus,
.solar-wizard textarea:focus {
    outline: 3px solid rgba(35, 122, 87, 0.18);
    border-color: var(--sepv-primary);
}

.solar-wizard__choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 10px;
}

.solar-wizard__choice {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 10px 12px;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #cfd8d2;
    border-radius: 8px;
    cursor: pointer;
    transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.solar-wizard__choice:hover {
    border-color: var(--sepv-primary);
}

.solar-wizard__choice input {
    width: 18px;
    height: 18px;
    accent-color: var(--sepv-primary);
    flex: 0 0 auto;
}

.solar-wizard__choice:has(input:checked) {
    background: #edf8f2;
    border-color: var(--sepv-primary);
    box-shadow: inset 0 0 0 1px var(--sepv-primary);
}

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

.solar-wizard__consents {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.solar-wizard__consents label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    line-height: 1.5;
}

.solar-wizard__consents input {
    margin-top: 4px;
    accent-color: var(--sepv-primary);
}

.solar-wizard__hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.solar-wizard__actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.solar-wizard__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    color: #ffffff !important;
    background: var(--sepv-primary);
    border: 1px solid var(--sepv-primary);
    border-radius: 8px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.solar-wizard__button:hover,
.solar-wizard__button:focus {
    color: #ffffff !important;
    background: var(--sepv-primary-dark);
    border-color: var(--sepv-primary-dark);
}

.solar-wizard__button:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.solar-wizard__button--ghost {
    color: var(--sepv-primary-dark) !important;
    background: #ffffff;
    border-color: #b6c8be;
}

.solar-wizard__button--ghost:hover,
.solar-wizard__button--ghost:focus {
    color: #ffffff !important;
}

.solar-wizard .has-error input,
.solar-wizard .has-error select,
.solar-wizard .has-error textarea,
.solar-wizard .has-error .solar-wizard__choice {
    border-color: var(--sepv-error);
}

.solar-wizard__loading {
    padding: 18px;
    color: var(--sepv-muted);
}

.solar-wizard__result {
    display: grid;
    gap: 16px;
}

.solar-wizard__card,
.solar-wizard__mini-card {
    padding: 18px;
    background: #ffffff;
    border: 1px solid var(--sepv-border);
    border-radius: 8px;
}

.solar-wizard__card p:first-child,
.solar-wizard__mini-card p:first-child {
    margin-top: 0;
}

.solar-wizard__metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    margin: 12px 0;
}

.solar-wizard__metrics div {
    padding: 12px;
    background: #f7faf8;
    border: 1px solid #dce7df;
    border-radius: 8px;
}

.solar-wizard__metrics span,
.solar-wizard__metrics strong {
    display: block;
}

.solar-wizard__metrics span {
    margin-bottom: 4px;
    color: var(--sepv-muted);
    font-size: 13px;
}

.solar-wizard__metrics strong {
    font-size: 18px;
}

.solar-wizard__solution-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.solar-wizard__explain {
    margin-top: 12px;
    padding: 12px;
    background: #f7faf8;
    border-left: 4px solid var(--sepv-primary);
    border-radius: 6px;
}

.solar-wizard__explain p {
    margin: 6px 0 0;
}

.solar-wizard__warning {
    margin-top: 12px;
    padding: 12px;
    color: var(--sepv-warn);
    background: var(--sepv-warn-bg);
    border: 1px solid #f6d69b;
    border-radius: 8px;
}

.solar-wizard__warning p {
    margin: 6px 0 0;
}

.solar-wizard__cta {
    padding: 16px 18px;
    color: #153d2c;
    background: #eaf7ef;
    border: 1px solid #bfe4cc;
    border-radius: 8px;
    font-weight: 700;
}

.solar-wizard ul {
    margin: 10px 0 0 18px;
    padding: 0;
}

.solar-wizard li {
    margin: 6px 0;
}

@media (max-width: 760px) {
    .solar-wizard {
        margin: 12px auto;
        padding: 14px;
    }

    .solar-wizard__header,
    .solar-wizard__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .solar-wizard__step {
        padding: 16px;
    }

    .solar-wizard__conditional-grid,
    .solar-wizard__contact-grid,
    .solar-wizard__solution-grid {
        grid-template-columns: 1fr;
    }

    .solar-wizard__choices {
        grid-template-columns: 1fr;
    }

    .solar-wizard__button {
        width: 100%;
    }
}

/* Page-aligned visual system for the solar guide layout. */
.solar-wizard,
.solar-mini-calculator {
    --sepv-bg: #eef2e6;
    --sepv-surface: transparent;
    --sepv-text: #17231d;
    --sepv-muted: #54645a;
    --sepv-border: rgba(23, 35, 29, 0.16);
    --sepv-border-strong: rgba(23, 35, 29, 0.34);
    --sepv-soft: rgba(45, 106, 79, 0.055);
    --sepv-primary: #2d6a4f;
    --sepv-primary-dark: #183f30;
    --sepv-accent: #2d6a4f;
    --sepv-warn: #7a4a11;
    --sepv-warn-bg: rgba(240, 180, 41, 0.12);
    --sepv-error: #9f2f24;
    --sepv-error-bg: rgba(159, 47, 36, 0.08);
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    color: var(--sepv-text);
    background: transparent;
    border: 0;
    border-radius: 0;
    text-align: left;
    line-height: 1.55;
}

.solar-wizard.solar-wizard h3,
.solar-wizard.solar-wizard h4,
.solar-mini-calculator.solar-mini-calculator h3,
.solar-mini-calculator.solar-mini-calculator h4 {
    color: var(--sepv-text);
    line-height: 1.05;
    letter-spacing: 0;
    font-weight: 650;
}

.solar-wizard.solar-wizard h3 {
    margin-bottom: clamp(22px, 3vw, 34px);
    font-size: clamp(1.45rem, 2.2vw, 2.25rem);
}

.solar-wizard.solar-wizard h4 {
    font-size: clamp(1.08rem, 1.35vw, 1.35rem);
}

.solar-wizard__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: stretch;
    gap: 0;
    margin-bottom: 0;
    border-top: 1px solid var(--sepv-border-strong);
    border-bottom: 1px solid var(--sepv-border);
}

.solar-wizard__steps-nav {
    display: flex;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.solar-wizard__steps-nav span {
    flex: 0 0 auto;
    padding: 15px 18px 14px 0;
    margin-right: 18px;
    color: rgba(23, 35, 29, 0.58);
    border-right: 1px solid var(--sepv-border);
    font-size: 0.92rem;
    font-weight: 620;
    white-space: nowrap;
}

.solar-wizard__steps-nav span.is-active {
    color: var(--sepv-primary-dark);
}

.solar-wizard__steps-nav span.is-complete {
    color: var(--sepv-primary);
}

.solar-wizard__step-indicator {
    min-width: 72px;
    padding: 15px 0 14px 18px;
    color: var(--sepv-primary-dark);
    background: transparent;
    border: 0;
    border-left: 1px solid var(--sepv-border);
    border-radius: 0;
    font-weight: 650;
}

.solar-wizard__progress {
    height: 2px;
    margin: 0 0 clamp(24px, 3.5vw, 42px);
    background: rgba(23, 35, 29, 0.10);
    border-radius: 0;
}

.solar-wizard__progress span {
    background: var(--sepv-primary);
    border-radius: 0;
}

.solar-wizard__notice,
.solar-wizard__success {
    border-radius: 0;
    border: 0;
    border-top: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
}

.solar-wizard__step {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
}

.solar-wizard__intro {
    max-width: 860px;
}

.solar-wizard__intro p,
.solar-wizard__muted {
    color: var(--sepv-muted);
    font-size: clamp(1rem, 1.23vw, 1.18rem);
}

.solar-wizard__field {
    margin-bottom: clamp(18px, 2.3vw, 28px);
}

.solar-wizard__label {
    margin-bottom: 9px;
    color: var(--sepv-text);
    font-weight: 620;
}

.solar-wizard input[type='text'],
.solar-wizard input[type='email'],
.solar-wizard input[type='tel'],
.solar-wizard input[type='number'],
.solar-wizard input[type='url'],
.solar-wizard select,
.solar-wizard textarea,
.solar-mini-calculator input,
.solar-mini-calculator select {
    min-height: 52px;
    padding: 12px 0;
    color: var(--sepv-text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--sepv-border-strong);
    border-radius: 0;
    box-shadow: none;
}

.solar-wizard textarea {
    padding-top: 12px;
}

.solar-wizard input:focus,
.solar-wizard select:focus,
.solar-wizard textarea:focus,
.solar-mini-calculator input:focus,
.solar-mini-calculator select:focus {
    outline: none;
    border-color: var(--sepv-primary);
    box-shadow: 0 1px 0 var(--sepv-primary);
}

.solar-wizard__choices {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 1px;
    background: var(--sepv-border);
    border: 1px solid var(--sepv-border);
}

.solar-wizard__choice {
    min-height: 58px;
    padding: 14px 16px;
    background: var(--sepv-bg);
    border: 0;
    border-radius: 0;
}

.solar-wizard__choice:hover {
    color: var(--sepv-primary-dark);
    background: rgba(45, 106, 79, 0.075);
}

.solar-wizard__choice:has(input:checked) {
    color: var(--sepv-primary-dark);
    background: rgba(45, 106, 79, 0.12);
    border: 0;
    box-shadow: inset 0 -3px 0 var(--sepv-primary);
}

.solar-wizard__conditional-grid,
.solar-wizard__contact-grid {
    gap: clamp(18px, 3vw, 34px);
}

.solar-wizard__actions {
    margin-top: clamp(24px, 3.5vw, 42px);
    padding-top: 18px;
    border-top: 1px solid var(--sepv-border-strong);
}

.solar-wizard__button {
    min-height: 54px;
    padding: 12px 24px;
    color: #eef2e6 !important;
    background: var(--sepv-primary-dark);
    border: 1px solid var(--sepv-primary-dark);
    border-radius: 0;
    font-weight: 650;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.solar-wizard__button:hover,
.solar-wizard__button:focus {
    color: #eef2e6 !important;
    background: var(--sepv-primary);
    border-color: var(--sepv-primary);
}

.solar-wizard__button--ghost {
    color: var(--sepv-primary-dark) !important;
    background: transparent;
    border-color: var(--sepv-border-strong);
}

.solar-wizard__button--ghost:hover,
.solar-wizard__button--ghost:focus {
    color: #eef2e6 !important;
    background: var(--sepv-primary-dark);
    border-color: var(--sepv-primary-dark);
}

.solar-wizard__result {
    gap: clamp(18px, 3vw, 32px);
}

.solar-wizard__card,
.solar-wizard__mini-card {
    padding: clamp(18px, 2.6vw, 30px) 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--sepv-border-strong);
    border-radius: 0;
}

.solar-wizard__metrics {
    gap: 1px;
    background: var(--sepv-border);
    border: 1px solid var(--sepv-border);
}

.solar-wizard__metrics div {
    padding: 15px 16px;
    background: var(--sepv-soft);
    border: 0;
    border-radius: 0;
}

.solar-wizard__metrics strong {
    color: var(--sepv-text);
    font-size: clamp(1.1rem, 1.5vw, 1.45rem);
}

.solar-wizard__solution-grid {
    gap: 18px;
}

.solar-wizard__level-grid,
.solar-wizard__product-grid,
.solar-wizard__related {
    display: grid;
    gap: 18px;
}

.solar-wizard__level {
    padding-top: 16px;
    border-top: 1px solid var(--sepv-border);
}

.solar-wizard__level h5,
.solar-wizard__product h6 {
    margin: 0 0 10px;
    color: var(--sepv-text);
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 650;
}

.solar-wizard__level h5 {
    font-size: 1.08rem;
}

.solar-wizard__product h6 {
    font-size: 1rem;
}

.solar-wizard__product {
    padding: 15px 0;
    border-top: 1px solid var(--sepv-border);
}

.solar-wizard__tagline {
    color: var(--sepv-muted);
    font-size: 0.92rem;
}

.solar-wizard__offers {
    margin-left: 0 !important;
    list-style: none;
}

.solar-wizard__offers a,
.solar-wizard__offer {
    color: var(--sepv-primary-dark);
    font-weight: 650;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.solar-wizard__related {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.solar-wizard__related article {
    padding-top: 12px;
    border-top: 1px solid var(--sepv-border);
}

.solar-wizard__related p {
    margin-bottom: 0;
}

.solar-wizard__explain {
    padding: 14px 0 0;
    background: transparent;
    border-left: 0;
    border-top: 1px solid var(--sepv-border);
    border-radius: 0;
}

.solar-wizard__warning,
.solar-wizard__cta {
    padding: 14px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--sepv-primary);
    border-radius: 0;
}

.solar-wizard__warning {
    color: var(--sepv-warn);
}

.solar-wizard__cta {
    color: var(--sepv-primary-dark);
}

.solar-mini-calculator {
    min-width: 0;
}

.solar-mini-calculator__form {
    display: grid;
    gap: 17px;
    width: 100%;
    padding-top: 2px;
}

.solar-mini-calculator label {
    display: grid;
    gap: 7px;
    color: var(--sepv-text);
    font-size: 0.95rem;
    font-weight: 620;
}

.solar-mini-calculator label > span {
    color: var(--sepv-muted);
    font-size: 0.86rem;
    font-weight: 400;
}

.solar-mini-calculator__check {
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 12px !important;
    color: var(--sepv-muted) !important;
    font-weight: 400 !important;
}

.solar-mini-calculator__check input {
    width: 18px;
    height: 18px;
    min-height: auto;
    padding: 0;
    margin-top: 4px;
    border: 0;
    box-shadow: none;
    background: transparent;
    accent-color: var(--sepv-primary);
}

.solar-mini-calculator__results {
    display: grid;
    gap: 18px;
    margin-top: clamp(22px, 3vw, 34px);
    padding-top: 20px;
    border-top: 1px solid var(--sepv-border-strong);
}

.solar-mini-calculator__main {
    display: grid;
    gap: 6px;
}

.solar-mini-calculator__main span,
.solar-mini-calculator dt {
    color: var(--sepv-muted);
    font-size: 0.88rem;
}

.solar-mini-calculator__main strong {
    color: var(--sepv-primary-dark);
    font-size: clamp(2rem, 3.8vw, 4.15rem);
    line-height: 0.95;
    letter-spacing: 0;
    font-weight: 650;
}

.solar-mini-calculator dl {
    display: grid;
    margin: 0;
    border-top: 1px solid var(--sepv-border);
}

.solar-mini-calculator dl div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--sepv-border);
}

.solar-mini-calculator dt,
.solar-mini-calculator dd {
    margin: 0;
}

.solar-mini-calculator dd {
    color: var(--sepv-text);
    font-weight: 650;
    text-align: right;
}

.solar-mini-calculator p {
    margin: 0;
    color: var(--sepv-muted);
    font-size: 0.94rem;
}

@media (max-width: 760px) {
    .solar-wizard,
    .solar-mini-calculator {
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .solar-wizard__header {
        grid-template-columns: 1fr;
    }

    .solar-wizard__step-indicator {
        border-top: 1px solid var(--sepv-border);
        border-left: 0;
        padding-left: 0;
        text-align: left;
    }

    .solar-wizard__choices,
    .solar-wizard__conditional-grid,
    .solar-wizard__contact-grid,
    .solar-wizard__solution-grid {
        grid-template-columns: 1fr;
    }

    .solar-mini-calculator dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .solar-mini-calculator dd {
        text-align: left;
    }
}

/* NamaiPro category pages and multi-category wizards. */
.sepv-page,
.sepv-page * {
    box-sizing: border-box;
}

.sepv-page {
    --np-ink: #10172a;
    --np-text: #243047;
    --np-muted: #657087;
    --np-line: #dfe5ec;
    --np-line-strong: #c7d1de;
    --np-green: #177a3d;
    --np-green-dark: #0f5f31;
    --np-green-soft: #edf8f1;
    --np-blue: #2457b8;
    --np-blue-soft: #eef4ff;
    --np-gold: #c98912;
    --np-gold-soft: #fff6df;
    --np-panel: #ffffff;
    --np-page: #f6f8fb;
    width: min(100%, 1480px);
    margin: 0 auto;
    padding: 0 28px 56px;
    color: var(--np-text);
    background:
        radial-gradient(circle at 18% 8%, rgba(23, 122, 61, 0.08), transparent 28%),
        linear-gradient(180deg, #ffffff 0, var(--np-page) 470px, #ffffff 100%);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.sepv-page h1,
.sepv-page h2,
.sepv-page h3,
.sepv-page p {
    letter-spacing: 0;
}

.sepv-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
    gap: 42px;
    align-items: center;
    min-height: 300px;
    padding: 32px 4px 24px;
}

.sepv-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--np-muted);
    font-size: 14px;
}

.sepv-breadcrumb span + span::before {
    content: "/";
    margin-right: 10px;
    color: #9aa5b5;
}

.sepv-hero h1 {
    max-width: 720px;
    margin: 0 0 16px;
    color: var(--np-ink);
    font-size: 56px;
    line-height: 1.02;
    font-weight: 780;
}

.sepv-hero p {
    max-width: 650px;
    margin: 0;
    color: var(--np-text);
    font-size: 19px;
    line-height: 1.6;
}

.sepv-hero__points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-width: 760px;
    margin-top: 30px;
}

.sepv-hero__points span {
    position: relative;
    display: grid;
    gap: 4px;
    min-height: 56px;
    padding-left: 52px;
    color: var(--np-ink);
    font-size: 15px;
}

.sepv-hero__points span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 38px;
    height: 38px;
    border: 2px solid var(--np-green);
    border-radius: 50%;
    background: #ffffff;
}

.sepv-hero__points span::after {
    content: "";
    position: absolute;
    left: 14px;
    top: 13px;
    width: 9px;
    height: 15px;
    border-right: 2px solid var(--np-green);
    border-bottom: 2px solid var(--np-green);
    transform: rotate(42deg);
}

.sepv-hero__points strong,
.sepv-hero__points small {
    display: block;
}

.sepv-hero__points strong {
    font-weight: 760;
}

.sepv-hero__points small {
    color: var(--np-muted);
    font-size: 14px;
    line-height: 1.35;
}

.sepv-hero__visual {
    min-height: 280px;
}

.sepv-device-visual {
    position: relative;
    min-height: 282px;
    overflow: hidden;
    border: 1px solid rgba(199, 209, 222, 0.9);
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.66)),
        linear-gradient(135deg, #eef3f7 0%, #ffffff 48%, #e7edf4 100%);
    box-shadow: 0 24px 80px rgba(16, 23, 42, 0.10);
}

.sepv-device-visual__unit {
    position: absolute;
    right: 78px;
    top: 42px;
    width: 220px;
    height: 138px;
    border: 1px solid #d5dde7;
    border-radius: 18px;
    background:
        linear-gradient(180deg, #ffffff, #eef3f8),
        #ffffff;
    box-shadow: 0 18px 34px rgba(16, 23, 42, 0.16);
}

.sepv-device-visual__unit::before,
.sepv-device-visual__unit::after {
    content: "";
    position: absolute;
    background: #dfe6ef;
    border: 1px solid #c6d0de;
}

.sepv-device-visual__unit::before {
    left: 32px;
    right: 32px;
    top: 34px;
    height: 12px;
    border-radius: 20px;
}

.sepv-device-visual__unit::after {
    left: 30px;
    bottom: 24px;
    width: 48px;
    height: 54px;
    border-radius: 9px;
}

.sepv-device-visual__panel {
    position: absolute;
    right: 34px;
    top: 28px;
    width: 118px;
    height: 190px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(23, 122, 61, 0.96), rgba(15, 95, 49, 0.96));
    box-shadow: 0 18px 42px rgba(23, 122, 61, 0.25);
}

.sepv-device-visual ul {
    position: absolute;
    left: 28px;
    bottom: 26px;
    display: grid;
    gap: 10px;
    width: 230px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sepv-device-visual li {
    margin: 0;
    padding: 12px 14px;
    color: var(--np-ink);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(199, 209, 222, 0.9);
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(16, 23, 42, 0.06);
    font-size: 15px;
    font-weight: 720;
}

.sepv-category-tabs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    margin: 0 0 22px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--np-line);
    border-radius: 18px;
    box-shadow: 0 18px 55px rgba(16, 23, 42, 0.09);
}

.sepv-category-tabs__item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 78px;
    padding: 16px 22px;
    color: var(--np-ink);
    border-right: 1px solid var(--np-line);
    text-decoration: none;
}

.sepv-category-tabs__item:last-child {
    border-right: 0;
}

.sepv-category-tabs__item:hover,
.sepv-category-tabs__item:focus {
    color: var(--np-green-dark);
    background: #f8fbf9;
}

.sepv-category-tabs__item.is-active {
    background: var(--np-green-soft);
    box-shadow: inset 0 4px 0 var(--np-green);
}

.sepv-category-tabs__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--np-green);
    border: 1px solid #bcdcc9;
    border-radius: 14px;
    background: #ffffff;
    font-size: 26px;
    line-height: 1;
}

.sepv-category-tabs strong,
.sepv-category-tabs small {
    display: block;
}

.sepv-category-tabs strong {
    font-size: 16px;
    font-weight: 780;
}

.sepv-category-tabs small {
    margin-top: 3px;
    color: var(--np-muted);
    font-size: 13px;
    line-height: 1.3;
}

.sepv-guide-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 28px;
    align-items: start;
}

.sepv-guide-layout__main {
    min-width: 0;
}

.sepv-guide-layout__side {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 24px;
}

.sepv-side-card {
    padding: 22px;
    color: var(--np-text);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--np-line);
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(16, 23, 42, 0.08);
}

.sepv-side-card--how {
    background: linear-gradient(180deg, #f4f8ff, #ffffff);
}

.sepv-side-card--promise {
    background: linear-gradient(180deg, #fff9ea, #ffffff);
    border-color: #f0d99c;
}

.sepv-side-card h2 {
    margin: 0 0 16px;
    color: var(--np-green-dark);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 780;
}

.sepv-side-card--promise h2 {
    color: #83560d;
}

.sepv-side-card ol {
    display: grid;
    gap: 15px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: sepv-step;
}

.sepv-side-card li {
    position: relative;
    min-height: 42px;
    margin: 0;
    padding-left: 52px;
    counter-increment: sepv-step;
}

.sepv-side-card li::before {
    content: counter(sepv-step);
    position: absolute;
    left: 0;
    top: 1px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: #ffffff;
    background: var(--np-blue);
    border-radius: 50%;
    font-size: 15px;
    font-weight: 780;
}

.sepv-side-card strong,
.sepv-side-card span {
    display: block;
}

.sepv-side-card strong {
    color: var(--np-ink);
    font-size: 15px;
}

.sepv-side-card span,
.sepv-side-card p {
    margin: 4px 0 0;
    color: var(--np-muted);
    font-size: 14px;
    line-height: 1.5;
}

.sepv-seo-content {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
    gap: 28px 52px;
    margin-top: 48px;
    padding: 42px;
    background: #ffffff;
    border: 1px solid var(--np-line);
    border-radius: 26px;
    box-shadow: 0 18px 60px rgba(16, 23, 42, 0.07);
}

.sepv-seo-content > h2,
.sepv-seo-content > p {
    grid-column: 1;
}

.sepv-seo-content > h2 {
    margin: 0;
    color: var(--np-ink);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 780;
}

.sepv-seo-content > p {
    margin: -12px 0 8px;
    color: var(--np-text);
    font-size: 17px;
    line-height: 1.75;
}

.sepv-faq-grid {
    grid-column: 2;
    grid-row: 1 / span 8;
    display: grid;
    gap: 14px;
    align-self: start;
}

.sepv-faq-grid article {
    padding: 18px;
    background: #f8fafc;
    border: 1px solid var(--np-line);
    border-radius: 16px;
}

.sepv-faq-grid h3 {
    margin: 0 0 8px;
    color: var(--np-ink);
    font-size: 17px;
    line-height: 1.35;
    font-weight: 760;
}

.sepv-faq-grid p {
    margin: 0;
    color: var(--np-muted);
    font-size: 15px;
    line-height: 1.6;
}

.sepv-page .solar-wizard--category {
    --sepv-bg: #ffffff;
    --sepv-surface: #ffffff;
    --sepv-text: var(--np-ink);
    --sepv-muted: var(--np-muted);
    --sepv-border: var(--np-line);
    --sepv-border-strong: var(--np-line-strong);
    --sepv-soft: #f8fafc;
    --sepv-primary: var(--np-green);
    --sepv-primary-dark: var(--np-green-dark);
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 28px;
    color: var(--np-text);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--np-line);
    border-radius: 20px;
    box-shadow: 0 22px 70px rgba(16, 23, 42, 0.10);
    font-family: inherit;
    line-height: 1.5;
}

.sepv-page .solar-wizard--category .solar-wizard__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: start;
    margin: 0 0 18px;
    padding: 0;
    border: 0;
}

.sepv-page .solar-wizard--category .solar-wizard__eyebrow {
    margin: 0 0 8px;
    color: var(--np-green);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 820;
    letter-spacing: 0.04em;
}

.sepv-page .solar-wizard--category h2,
.sepv-page .solar-wizard--category h3,
.sepv-page .solar-wizard--category h4,
.sepv-page .solar-wizard--category h5,
.sepv-page .solar-wizard--category h6 {
    color: var(--np-ink);
    letter-spacing: 0;
}

.sepv-page .solar-wizard--category h2 {
    margin: 0 0 8px;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 780;
}

.sepv-page .solar-wizard--category .solar-wizard__muted,
.sepv-page .solar-wizard--category .solar-wizard__intro p {
    color: var(--np-muted);
    font-size: 16px;
    line-height: 1.65;
}

.sepv-page .solar-wizard--category .solar-wizard__step-indicator {
    min-width: 82px;
    padding: 12px 16px;
    color: var(--np-green-dark);
    background: var(--np-green-soft);
    border: 1px solid #bfdec9;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 780;
    text-align: center;
}

.sepv-page .solar-wizard__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
    margin-bottom: 16px;
    color: var(--np-muted);
    font-size: 14px;
}

.sepv-page .solar-wizard__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sepv-page .solar-wizard__meta span::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--np-green);
    border-radius: 50%;
}

.sepv-page .solar-wizard__stage-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(96px, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.sepv-page .solar-wizard__stage-track span {
    position: relative;
    overflow: hidden;
    padding: 10px 12px;
    color: var(--np-muted);
    background: #f1f4f8;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sepv-page .solar-wizard__stage-track span.is-active {
    color: #ffffff;
    background: var(--np-green);
    font-weight: 760;
}

.sepv-page .solar-wizard__stage-track span.is-complete {
    color: var(--np-green-dark);
    background: var(--np-green-soft);
}

.sepv-page .solar-wizard--category .solar-wizard__progress {
    height: 7px;
    overflow: hidden;
    margin: 0 0 26px;
    background: #e8edf3;
    border-radius: 999px;
}

.sepv-page .solar-wizard--category .solar-wizard__progress span {
    background: linear-gradient(90deg, var(--np-green), #32a35d);
    border-radius: inherit;
}

.sepv-page .solar-wizard--category .solar-wizard__notice {
    padding: 14px 16px;
    margin: 0 0 18px;
    background: #fff1f0;
    border: 1px solid #ffc9c4;
    border-radius: 14px;
    font-size: 15px;
}

.sepv-page .solar-wizard--category .solar-wizard__step {
    padding: 0;
    background: transparent;
    border: 0;
}

.sepv-page .solar-wizard__question-count,
.sepv-page .solar-wizard__stage-heading span {
    margin: 0 0 10px;
    color: var(--np-green);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 780;
}

.sepv-page .solar-wizard__stage-heading {
    margin-bottom: 22px;
}

.sepv-page .solar-wizard__stage-heading h3,
.sepv-page .solar-wizard__intro h3 {
    margin: 0;
    color: var(--np-ink);
    font-size: 26px;
    line-height: 1.22;
    font-weight: 780;
}

.sepv-page .solar-wizard--category .solar-wizard__field {
    margin-bottom: 24px;
}

.sepv-page .solar-wizard--category .solar-wizard__label {
    margin: 0 0 12px;
    color: var(--np-ink);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 760;
}

.sepv-page .solar-wizard--category .solar-wizard__choices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    background: transparent;
    border: 0;
}

.sepv-page .solar-wizard--category .solar-wizard__choice {
    position: relative;
    display: grid;
    place-items: center;
    gap: 12px;
    min-height: 126px;
    padding: 18px 14px;
    color: var(--np-ink);
    background: #ffffff;
    border: 1px solid var(--np-line-strong);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(16, 23, 42, 0.045);
    text-align: center;
}

.sepv-page .solar-wizard--category .solar-wizard__choice:hover {
    color: var(--np-green-dark);
    background: #fbfefc;
    border-color: #8fcaa3;
    box-shadow: 0 14px 32px rgba(23, 122, 61, 0.10);
}

.sepv-page .solar-wizard--category .solar-wizard__choice input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.sepv-page .solar-wizard--category .solar-wizard__choice-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--np-green);
    background: var(--np-green-soft);
    border: 1px solid #b7dec4;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 780;
}

.sepv-page .solar-wizard--category .solar-wizard__choice span:last-child {
    font-size: 16px;
    line-height: 1.35;
    font-weight: 680;
}

.sepv-page .solar-wizard--category .solar-wizard__choice.is-selected,
.sepv-page .solar-wizard--category .solar-wizard__choice:has(input:checked) {
    color: var(--np-green-dark);
    background: linear-gradient(180deg, #f1fbf4, #ffffff);
    border: 2px solid var(--np-green);
    box-shadow: 0 16px 38px rgba(23, 122, 61, 0.14);
}

.sepv-page .solar-wizard--category .solar-wizard__choice.is-selected::after,
.sepv-page .solar-wizard--category .solar-wizard__choice:has(input:checked)::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 12px;
    width: 22px;
    height: 22px;
    background: var(--np-green);
    border-radius: 50%;
}

.sepv-page .solar-wizard--category .solar-wizard__choice.is-selected::before,
.sepv-page .solar-wizard--category .solar-wizard__choice:has(input:checked)::before {
    content: "";
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 1;
    width: 6px;
    height: 11px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(42deg);
}

.sepv-page .solar-wizard--category .solar-wizard__choice.is-selected .solar-wizard__choice-mark,
.sepv-page .solar-wizard--category .solar-wizard__choice:has(input:checked) .solar-wizard__choice-mark {
    color: #ffffff;
    background: var(--np-green);
    border-color: var(--np-green);
}

.sepv-page .solar-wizard--category .has-error .solar-wizard__choice {
    border-color: #d73328;
}

.sepv-page .solar-wizard--category .solar-wizard__actions {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--np-line);
}

.sepv-page .solar-wizard--category .solar-wizard__button {
    min-height: 52px;
    min-width: 148px;
    padding: 13px 22px;
    color: #ffffff !important;
    background: linear-gradient(180deg, #229047, var(--np-green-dark));
    border: 0;
    border-radius: 12px;
    box-shadow: 0 14px 24px rgba(23, 122, 61, 0.24);
    font-size: 16px;
    font-weight: 780;
}

.sepv-page .solar-wizard--category .solar-wizard__button:hover,
.sepv-page .solar-wizard--category .solar-wizard__button:focus {
    background: linear-gradient(180deg, #1b843f, #0d542b);
}

.sepv-page .solar-wizard--category .solar-wizard__button--ghost {
    color: var(--np-ink) !important;
    background: #ffffff;
    border: 1px solid var(--np-line-strong);
    box-shadow: none;
}

.sepv-page .solar-wizard--category .solar-wizard__button--ghost:hover,
.sepv-page .solar-wizard--category .solar-wizard__button--ghost:focus {
    color: var(--np-green-dark) !important;
    background: var(--np-green-soft);
}

.sepv-page .solar-wizard--category .solar-wizard__result {
    display: grid;
    gap: 16px;
}

.sepv-page .solar-wizard--category .solar-wizard__card {
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--np-line);
    border-radius: 16px;
    box-shadow: 0 10px 28px rgba(16, 23, 42, 0.05);
}

.sepv-page .solar-wizard--category .solar-wizard__card h4 {
    margin: 0 0 12px;
    color: var(--np-ink);
    font-size: 20px;
    line-height: 1.25;
    font-weight: 780;
}

.sepv-page .solar-wizard--category .solar-wizard__card p,
.sepv-page .solar-wizard--category .solar-wizard__card li {
    color: var(--np-text);
    font-size: 16px;
    line-height: 1.6;
}

.sepv-page .solar-wizard__level-grid,
.sepv-page .solar-wizard__product-grid {
    gap: 14px;
}

.sepv-page .solar-wizard__level,
.sepv-page .solar-wizard__product,
.sepv-page .solar-wizard__related article {
    padding: 16px;
    background: #f8fafc;
    border: 1px solid var(--np-line);
    border-radius: 14px;
}

.sepv-page .solar-wizard__level h5,
.sepv-page .solar-wizard__product h6 {
    margin: 0 0 8px;
    font-size: 17px;
}

.sepv-page .solar-wizard__offers a,
.sepv-page .solar-wizard__offer,
.sepv-page .solar-wizard__related a {
    color: var(--np-green-dark);
    font-weight: 760;
}

@media (max-width: 1100px) {
    .sepv-page {
        padding: 0 18px 44px;
    }

    .sepv-hero,
    .sepv-guide-layout,
    .sepv-seo-content {
        grid-template-columns: 1fr;
    }

    .sepv-hero__visual,
    .sepv-guide-layout__side {
        display: none;
    }

    .sepv-faq-grid,
    .sepv-seo-content > h2,
    .sepv-seo-content > p {
        grid-column: 1;
        grid-row: auto;
    }
}

@media (max-width: 820px) {
    .sepv-hero {
        min-height: 0;
        padding-top: 24px;
    }

    .sepv-hero h1 {
        font-size: 40px;
    }

    .sepv-hero p {
        font-size: 17px;
    }

    .sepv-hero__points,
    .sepv-category-tabs {
        grid-template-columns: 1fr;
    }

    .sepv-category-tabs__item {
        border-right: 0;
        border-bottom: 1px solid var(--np-line);
    }

    .sepv-category-tabs__item:last-child {
        border-bottom: 0;
    }

    .sepv-page .solar-wizard--category {
        padding: 20px;
        border-radius: 18px;
    }

    .sepv-page .solar-wizard--category .solar-wizard__header {
        grid-template-columns: 1fr;
    }

    .sepv-page .solar-wizard--category h2 {
        font-size: 25px;
    }

    .sepv-page .solar-wizard__stage-track {
        grid-template-columns: 1fr 1fr;
    }

    .sepv-page .solar-wizard--category .solar-wizard__choices {
        grid-template-columns: 1fr;
    }

    .sepv-page .solar-wizard--category .solar-wizard__choice {
        min-height: 86px;
        grid-template-columns: 44px minmax(0, 1fr);
        justify-items: start;
        text-align: left;
    }

    .sepv-page .solar-wizard--category .solar-wizard__actions {
        flex-direction: column;
    }

    .sepv-page .solar-wizard--category .solar-wizard__button {
        width: 100%;
    }

    .sepv-seo-content {
        padding: 24px;
        border-radius: 20px;
    }
}

/* Requested layout refinements: full-width page background, contained content, no hero visual/sidebar/icons. */
.sepv-page {
    width: 100vw;
    max-width: none;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0;
}

.sepv-page__inner {
    width: min(100%, 1320px);
    margin: 0 auto;
    padding: 0 48px 64px;
}

.sepv-hero {
    display: block;
    min-height: 0;
    padding: 42px 0 28px;
}

.sepv-hero__content {
    width: 100%;
}

.sepv-hero h1 {
    max-width: none;
    width: 100%;
    font-size: 58px;
    line-height: 1.06;
}

.sepv-hero p {
    max-width: none;
    width: 100%;
    font-size: 20px;
}

.sepv-hero__visual,
.sepv-device-visual,
.sepv-guide-layout__side,
.sepv-side-card {
    display: none;
}

.sepv-category-tabs {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    margin-bottom: 26px;
}

.sepv-category-tabs__item {
    display: flex;
    align-items: center;
    min-height: 58px;
    padding: 14px 18px;
    border-right: 1px solid var(--np-line);
}

.sepv-category-tabs__item span {
    min-width: 0;
}

.sepv-category-tabs strong {
    overflow: hidden;
    font-size: 15px;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.sepv-category-tabs__icon,
.sepv-category-tabs small {
    display: none;
}

.sepv-guide-layout {
    display: block;
}

.sepv-guide-layout__main {
    width: 100%;
}

.sepv-page .solar-wizard--category .solar-wizard__eyebrow,
.sepv-page .solar-wizard__meta {
    display: none;
}

.sepv-page .solar-wizard--category h2 {
    font-size: 32px;
}

.sepv-page .solar-wizard__stage-track {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
}

.sepv-page .solar-wizard__stage-track span {
    background: #eef2f6;
}

.sepv-page .solar-wizard__stage-track span.is-active {
    background: var(--np-green);
}

.sepv-page .solar-wizard--category .solar-wizard__choice {
    min-height: 98px;
    padding: 18px 16px;
}

.sepv-page .solar-wizard--category .solar-wizard__choice span:last-child {
    font-size: 16px;
}

.sepv-page .solar-wizard--category .solar-wizard__choice-mark {
    display: none;
}

.sepv-page .solar-wizard--category .solar-wizard__choice:has(input:checked)::after,
.sepv-page .solar-wizard--category .solar-wizard__choice.is-selected::after {
    right: 10px;
    top: 10px;
}

.sepv-page .solar-wizard--category .solar-wizard__choice:has(input:checked)::before,
.sepv-page .solar-wizard--category .solar-wizard__choice.is-selected::before {
    right: 18px;
    top: 14px;
}

@media (max-width: 1100px) {
    .sepv-page__inner {
        padding-right: 28px;
        padding-left: 28px;
    }

    .sepv-hero h1 {
        white-space: normal;
    }
}

@media (min-width: 1101px) {
    .sepv-hero h1,
    .sepv-hero p {
        white-space: nowrap;
    }
}

@media (max-width: 820px) {
    .sepv-page__inner {
        padding: 0 18px 42px;
    }

    .sepv-hero {
        padding: 28px 0 22px;
    }

    .sepv-hero h1 {
        font-size: 38px;
    }

    .sepv-category-tabs {
        grid-template-columns: 1fr;
    }

    .sepv-category-tabs__item {
        min-height: 52px;
        padding: 12px 15px;
        border-right: 0;
        border-bottom: 1px solid var(--np-line);
    }

    .sepv-page .solar-wizard__stage-track {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .sepv-page .solar-wizard--category .solar-wizard__choices {
        gap: 9px;
    }

    .sepv-page .solar-wizard--category .solar-wizard__choice {
        display: flex;
        align-items: center;
        min-height: 62px;
        padding: 12px 14px;
        text-align: left;
    }

    .sepv-page .solar-wizard--category .solar-wizard__field {
        margin-bottom: 18px;
    }
}

/* Final category page refinements. */
.sepv-page .sepv-hero__content {
    min-width: 0;
}

.sepv-page .sepv-hero h1,
.sepv-page .sepv-hero p {
    max-width: 100%;
    white-space: normal;
}

.sepv-page .sepv-hero p {
    overflow-wrap: normal;
}

.sepv-page .sepv-category-tabs {
    display: grid;
    gap: 10px;
    overflow: visible;
    padding: 10px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 249, 0.96));
    border: 1px solid var(--np-line);
    border-radius: 20px;
    box-shadow: 0 16px 42px rgba(16, 23, 42, 0.08);
}

.sepv-page--rekuperatoriai .sepv-category-tabs,
.sepv-page--kondicionieriai .sepv-category-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sepv-page--silumos-siurbliai .sepv-category-tabs,
.sepv-page--katilai .sepv-category-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sepv-page--saules-elektrines .sepv-category-tabs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sepv-page .sepv-category-tabs__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 58px;
    padding: 13px 16px;
    color: var(--np-ink);
    background: #ffffff;
    border: 1px solid #dde5ef;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(16, 23, 42, 0.045);
    text-align: center;
}

.sepv-page .sepv-category-tabs__item:last-child {
    border-right: 1px solid #dde5ef;
    border-bottom: 1px solid #dde5ef;
}

.sepv-page .sepv-category-tabs__item:hover,
.sepv-page .sepv-category-tabs__item:focus {
    color: var(--np-green-dark);
    background: #f6fbf8;
    border-color: #b9d9c5;
}

.sepv-page .sepv-category-tabs__item.is-active {
    color: var(--np-green-dark);
    background: var(--np-green-soft);
    border-color: #9ccaac;
    box-shadow: inset 0 3px 0 var(--np-green), 0 8px 18px rgba(16, 23, 42, 0.045);
}

.sepv-page .sepv-category-tabs strong {
    overflow: visible;
    font-size: 15px;
    line-height: 1.28;
    white-space: normal;
    text-overflow: clip;
}

.sepv-page .solar-wizard--category .solar-wizard__header {
    display: block;
}

.sepv-page .solar-wizard--category .solar-wizard__header > div:first-child,
.sepv-page .solar-wizard--category .solar-wizard__muted,
.sepv-page .solar-wizard--category .solar-wizard__intro,
.sepv-page .solar-wizard--category .solar-wizard__intro p {
    max-width: none;
    width: 100%;
}

.sepv-page .solar-wizard--category .solar-wizard__step-indicator {
    display: flex;
    width: max-content;
    margin: 12px 0 0 auto;
}

@media (max-width: 1100px) {
    .sepv-page .sepv-category-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        padding: 9px;
    }
}

@media (max-width: 820px) {
    .sepv-page .sepv-category-tabs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 8px;
    }

    .sepv-page .sepv-category-tabs__item {
        min-height: 48px;
        padding: 10px 9px;
    }

    .sepv-page .sepv-category-tabs strong {
        font-size: 13px;
        line-height: 1.24;
    }
}

/* NamaiPro product and content sections. */
.sepv-page {
    --np-ink: #132238;
    --np-text: #2b3b4f;
    --np-muted: #607086;
    --np-line: #d8e1ea;
    --np-line-strong: #b9c8d8;
    --np-green: #0b7a53;
    --np-green-dark: #075d44;
    --np-green-soft: #e9f6f1;
    --np-page: #f7f9fb;
    --np-panel: #ffffff;
    background: linear-gradient(180deg, #f7f9fb 0, #ffffff 540px, #f7f9fb 100%);
}

.sepv-page .sepv-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.sepv-page .sepv-hero__cta a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 48px;
    padding: 12px 15px;
    color: var(--np-ink);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--np-line);
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 720;
}

.sepv-page .sepv-hero__cta a:hover,
.sepv-page .sepv-hero__cta a:focus {
    color: var(--np-green-dark);
    border-color: #9ccab8;
    box-shadow: 0 10px 26px rgba(11, 122, 83, 0.09);
}

.sepv-page .sepv-hero__cta a span:last-child {
    color: var(--np-green);
    font-size: 18px;
    line-height: 1;
}

.sepv-product-section,
.sepv-seo-content {
    display: block;
    margin-top: 58px;
    padding: 58px 0 0;
    background: transparent;
    border: 0;
    border-top: 1px solid var(--np-line);
    border-radius: 0;
    box-shadow: none;
}

.sepv-section-head {
    display: block;
    margin-bottom: 34px;
}

.sepv-section-head span {
    display: none;
    color: var(--np-green-dark);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 760;
    text-transform: uppercase;
}

.sepv-section-head h2 {
    margin: 0;
    color: var(--np-ink);
    font-size: 48px;
    line-height: 1.02;
    font-weight: 650;
}

.sepv-section-head p {
    max-width: none;
    margin: 16px 0 0;
    color: var(--np-muted);
    font-size: 18px;
    line-height: 1.62;
}

.sepv-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    background: transparent;
    border: 0;
}

.sepv-product-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
    overflow: hidden;
    background: var(--np-panel);
    border: 1px solid var(--np-line);
    border-radius: 18px;
    box-shadow: 0 14px 34px rgba(19, 34, 56, 0.06);
}

.sepv-product-card__media {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    color: var(--np-green-dark);
    background: linear-gradient(135deg, #eef5f6, #ffffff);
    border-bottom: 1px solid var(--np-line);
    text-decoration: none;
}

.sepv-product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sepv-product-card__media span {
    font-size: 44px;
    line-height: 1;
    font-weight: 650;
}

.sepv-product-card__body {
    display: grid;
    gap: 16px;
    align-content: start;
    padding: 24px;
}

.sepv-product-card__meta,
.sepv-product-card__terms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sepv-product-card__meta span,
.sepv-product-card__terms span {
    color: var(--np-muted);
    font-size: 13px;
    line-height: 1.2;
}

.sepv-product-card__meta span:first-child {
    color: var(--np-green-dark);
    font-weight: 760;
}

.sepv-product-card h3 {
    margin: 0;
    color: var(--np-ink);
    font-size: 22px;
    line-height: 1.12;
    font-weight: 650;
}

.sepv-product-card h3 a {
    color: inherit;
    text-decoration: none;
}

.sepv-product-card h3 a:hover,
.sepv-product-card h3 a:focus {
    color: var(--np-green-dark);
}

.sepv-product-card p {
    margin: 0;
    color: var(--np-muted);
    font-size: 15px;
    line-height: 1.58;
}

.sepv-product-card__offer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--np-line);
}

.sepv-product-card__offer span {
    color: var(--np-ink);
    font-weight: 720;
}

.sepv-product-card__offer a {
    color: var(--np-green-dark);
    font-weight: 720;
    text-decoration: none;
}

.sepv-product-card__offer a::after {
    content: " →";
}

.sepv-products-empty {
    max-width: 820px;
    padding-top: 22px;
    border-top: 2px solid var(--np-green);
}

.sepv-products-empty h3 {
    margin: 0 0 12px;
    color: var(--np-ink);
    font-size: 28px;
    line-height: 1.12;
    font-weight: 650;
}

.sepv-products-empty p {
    margin: 0;
    color: var(--np-muted);
    font-size: 17px;
    line-height: 1.62;
}

.sepv-seo-list {
    display: grid;
    gap: 18px;
}

.sepv-copy-section {
    display: block;
    padding: 28px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--np-line);
    border-radius: 18px;
}

.sepv-copy-section h2 {
    margin: 0;
    color: var(--np-ink);
    font-size: 34px;
    line-height: 1.08;
    font-weight: 650;
}

.sepv-copy-section p {
    margin: 14px 0 0;
    max-width: none;
    color: var(--np-muted);
    font-size: 17px;
    line-height: 1.72;
}

.sepv-faq-section {
    display: grid;
    gap: 32px;
    margin-top: 64px;
}

.sepv-faq-section h2 {
    max-width: 900px;
    margin: 0;
    color: var(--np-ink);
    font-size: 48px;
    line-height: 1.04;
    font-weight: 650;
}

.sepv-faq-list {
    max-width: none;
    border-top: 1px solid var(--np-line-strong);
}

.sepv-faq-list details {
    border-bottom: 1px solid var(--np-line);
}

.sepv-faq-list summary {
    position: relative;
    display: block;
    padding: 20px 46px 20px 0;
    color: var(--np-ink);
    font-size: 19px;
    line-height: 1.28;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.sepv-faq-list summary::-webkit-details-marker {
    display: none;
}

.sepv-faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 20px;
    color: var(--np-green);
    font-size: 25px;
    line-height: 1;
}

.sepv-faq-list details[open] summary::after {
    content: "-";
}

.sepv-faq-list p {
    max-width: 820px;
    margin: 0;
    padding: 0 0 22px;
    color: var(--np-muted);
    font-size: 16px;
    line-height: 1.68;
}

.sepv-page .solar-wizard--category .solar-wizard__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) max-content;
    gap: 16px;
    align-items: start;
}

.sepv-page .solar-wizard--category .solar-wizard__header > div:first-child {
    min-width: 0;
}

.sepv-page .solar-wizard--category .solar-wizard__step-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 64px;
    min-height: 38px;
    margin: 1px 0 0;
    padding: 8px 12px;
    border-radius: 999px;
    text-align: center;
}

@media (max-width: 1020px) {
    .sepv-section-head,
    .sepv-copy-section {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .sepv-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .sepv-product-section,
    .sepv-seo-content {
        margin-top: 42px;
        padding-top: 42px;
    }

    .sepv-section-head h2,
    .sepv-faq-section h2 {
        font-size: 36px;
    }

    .sepv-product-grid {
        grid-template-columns: 1fr;
    }

    .sepv-product-card__body {
        padding: 20px;
    }

    .sepv-copy-section h2 {
        font-size: 28px;
    }

    .sepv-faq-list summary {
        font-size: 17px;
    }

    .sepv-page .solar-wizard--category .solar-wizard__header {
        gap: 10px;
    }

    .sepv-page .solar-wizard--category .solar-wizard__step-indicator {
        min-width: 58px;
        min-height: 34px;
        padding: 7px 10px;
        font-size: 14px;
    }
}

/* Main page and overflow refinements. */
html:has(.sepv-page),
body:has(.sepv-page) {
    overflow-x: hidden;
}

.sepv-page {
    max-width: 100vw;
    overflow-x: clip;
}

.sepv-page--main .sepv-hero h1 {
    max-width: 1120px;
}

.sepv-page--main .sepv-hero p {
    max-width: 1040px;
}

.sepv-page--main .sepv-category-tabs--main {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sepv-guide-layout--main {
    margin-top: 26px;
}

.sepv-page .solar-wizard--universal .solar-wizard__choices--categories {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice {
    min-height: 132px;
}

.sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice span {
    display: grid;
    gap: 7px;
}

.sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice strong,
.sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice small {
    display: block;
}

.sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice strong {
    color: inherit;
    font-size: 17px;
    line-height: 1.2;
}

.sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice small {
    color: var(--np-muted);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

@supports not (overflow: clip) {
    .sepv-page {
        overflow-x: hidden;
    }
}

@media (max-width: 1100px) {
    .sepv-page--main .sepv-category-tabs--main,
    .sepv-page .solar-wizard--universal .solar-wizard__choices--categories {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .sepv-page--main .sepv-hero h1 {
        font-size: 34px;
    }

    .sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice {
        min-height: 88px;
        padding: 12px 10px;
        text-align: center;
    }

    .sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice strong {
        font-size: 14px;
    }

    .sepv-page .solar-wizard--universal .solar-wizard__choices--categories .solar-wizard__choice small {
        font-size: 12px;
    }
}
