:root {
    --pw-ink: #101828;
    --pw-text: #344054;
    --pw-muted: #667085;
    --pw-blue: #1769e0;
    --pw-blue-dark: #0f56c6;
    --pw-orange: #e33700;
    --pw-bg: #f7f9fc;
    --pw-panel: #ffffff;
    --pw-soft: #eef4ff;
    --pw-line: #d9e2ef;
    --pw-line-soft: #edf1f6;
    --pw-radius: 10px;
    --pw-radius-lg: 14px;
    --pw-shadow: 0 18px 45px rgba(16, 24, 40, 0.08);
    --pw-shadow-soft: 0 8px 24px rgba(16, 24, 40, 0.06);
    --pw-container: 1180px;
    --pw-edge: max(24px, calc((100vw - var(--pw-container)) / 2));
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--pw-ink);
    background: #fff;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
    content: none !important;
}

a {
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

main {
    background: #fff;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 9999;
    padding: 10px 14px;
    border-radius: 8px;
    background: var(--pw-blue);
    color: #fff;
}

.skip-link:focus {
    top: 12px;
}

.top-usp-bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    width: 100%;
    padding: 8px max(24px, calc((100vw - var(--pw-container)) / 2));
    color: var(--pw-text);
    background: #fff;
    border-bottom: 1px solid var(--pw-line-soft);
    font-size: 13px;
    font-weight: 700;
}

.top-usp-bar span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 0;
    white-space: nowrap;
}

.top-usp-bar i,
.main-nav i,
.mega-menu i,
.header-cta i,
.primary-link i,
.secondary-link i,
.text-button i {
    color: var(--pw-blue) !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 26px;
    width: 100%;
    min-height: 74px;
    padding: 14px max(24px, calc((100vw - var(--pw-container)) / 2));
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--pw-line);
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 300px;
}

.brand-logo {
    display: block;
    width: 300px;
    max-height: 54px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.main-nav button,
.nav-link-icon {
    min-height: 40px;
    padding: 9px 11px;
    border: 0;
    border-radius: 8px;
    color: var(--pw-text);
    background: transparent;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.main-nav button:hover,
.nav-link-icon:hover,
.nav-mega.is-open > button {
    color: var(--pw-ink);
    background: var(--pw-bg);
}

.nav-mega {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    display: none;
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 16px;
    width: min(860px, calc(100vw - 48px));
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    background: #fff;
    border: 1px solid var(--pw-line);
    border-radius: 14px;
    box-shadow: var(--pw-shadow);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.compact-mega {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    width: min(780px, calc(100vw - 48px));
}

.nav-mega:hover .mega-menu,
.nav-mega > button[aria-expanded="true"] + .mega-menu,
.nav-mega.is-open .mega-menu {
    display: grid;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mega-menu div {
    min-width: 0;
}

.mega-menu strong {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    color: var(--pw-ink);
    font-size: 13px;
    font-weight: 900;
}

.mega-menu a {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 8px;
    border-radius: 8px;
    color: var(--pw-text);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
}

.mega-menu a:hover {
    color: var(--pw-blue-dark);
    background: var(--pw-bg);
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 14px var(--pw-edge);
    color: #526173;
    background: #ffffff;
    border-bottom: 1px solid var(--pw-line);
    font-size: 13px;
    font-weight: 800;
    overflow-x: auto;
}

.breadcrumbs a {
    color: var(--pw-blue-dark);
    text-decoration: none;
    white-space: nowrap;
}

.breadcrumbs span {
    color: var(--pw-ink);
    white-space: nowrap;
}

.breadcrumbs i {
    flex: 0 0 auto;
    color: #98a2b3 !important;
    font-size: 12px;
}

.header-cta,
.primary-link,
.primary-button,
.compare-card button,
.final-cta .primary-link,
.switch-alert-form button,
.provider-offer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 20px;
    border: 0;
    border-radius: 8px;
    color: #fff !important;
    background: var(--pw-blue) !important;
    box-shadow: 0 12px 24px rgba(23, 105, 224, 0.22);
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
}

.header-cta:hover,
.primary-link:hover,
.primary-button:hover,
.compare-card button:hover,
.switch-alert-form button:hover,
.provider-offer-button:hover {
    background: var(--pw-blue-dark) !important;
}

button.address-result-button,
.compare-card button.address-result-button {
    background: var(--pw-orange) !important;
    box-shadow: 0 12px 24px rgba(227, 55, 0, 0.2);
}

button.address-result-button:hover,
.compare-card button.address-result-button:hover {
    background: #c43100 !important;
}

.secondary-link,
.secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid var(--pw-line);
    border-radius: 8px;
    color: var(--pw-ink) !important;
    background: #fff !important;
    box-shadow: var(--pw-shadow-soft);
    font-weight: 900;
    text-decoration: none;
}

.text-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pw-blue-dark) !important;
    font-weight: 900;
    text-decoration: none;
}

h1,
h2,
h3 {
    color: var(--pw-ink);
    letter-spacing: 0;
}

h1 {
    max-width: 760px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    font-weight: 900;
}

h2 {
    font-size: clamp(26px, 2.5vw, 36px);
    line-height: 1.16;
    font-weight: 900;
}

h3 {
    font-size: 19px;
    line-height: 1.25;
    font-weight: 900;
}

.lead {
    max-width: 680px;
    margin-top: 16px;
    color: var(--pw-text);
    font-size: clamp(17px, 1.3vw, 20px);
    line-height: 1.65;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--pw-blue-dark) !important;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.hero,
.page-hero,
.article-hero,
.provider-hero,
.tools-hero,
.alert-page-hero,
.knowledge-hero,
.results-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 58px var(--pw-edge);
    background:
        linear-gradient(90deg, rgba(255,255,255,.96), rgba(247,249,252,.92)),
        radial-gradient(circle at 90% 10%, rgba(23,105,224,.10), transparent 34%),
        var(--pw-bg) !important;
    border-bottom: 1px solid var(--pw-line);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 450px);
    align-items: center;
    gap: 56px;
    min-height: auto !important;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 48%, rgba(247,249,252,.72) 100%),
        url("../img/stock/modern-home.jpg") right center / 48% 100% no-repeat,
        var(--pw-bg) !important;
}

.page-hero,
.provider-hero,
.tools-hero,
.alert-page-hero,
.knowledge-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
    align-items: center;
    gap: 44px;
}

.article-hero {
    display: block;
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(247,249,252,.94) 58%, rgba(247,249,252,.78) 100%),
        url("../img/stock/energy-light.jpg") right center / 38% 100% no-repeat,
        var(--pw-bg) !important;
}

.topic-hero,
.knowledge-hero {
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(247,249,252,.94) 58%, rgba(247,249,252,.72) 100%),
        url("../img/stock/solar-roof.jpg") right center / 38% 100% no-repeat,
        var(--pw-bg) !important;
}

.provider-hero,
.tools-hero,
.alert-page-hero {
    background:
        linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(247,249,252,.94) 58%, rgba(247,249,252,.72) 100%),
        url("../img/stock/home-advice.jpg") right center / 38% 100% no-repeat,
        var(--pw-bg) !important;
}

.article-hero h1,
.provider-hero h1,
.topic-hero h1,
.page-hero h1 {
    max-width: 780px;
    font-size: clamp(32px, 3.3vw, 44px);
    line-height: 1.1;
}

.hero-copy,
.hero > div,
.page-hero > div,
.provider-hero > div {
    min-width: 0;
}

.hero-kicker,
.hero-highlights,
.signal-row,
.article-meta-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.hero-kicker {
    margin: 0 0 18px;
}

.hero-kicker span,
.hero-kicker strong,
.hero-highlights span,
.signal-row span,
.article-meta-strip span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 7px 11px;
    border: 1px solid var(--pw-line);
    border-radius: 999px;
    color: var(--pw-text);
    background: #fff;
    font-size: 13px;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-proof,
.metric-strip,
.feature-grid,
.comparison-grid,
.article-grid,
.info-grid,
.trust-grid,
.related-article-grid,
.tool-grid,
.provider-grid,
.review-snippet-grid,
.summary-grid,
.provider-mini-grid,
.steps {
    display: grid;
    gap: 16px;
}

.hero-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
}

.hero-proof div,
.metric-strip div,
.feature-grid article,
.comparison-grid article,
.article-grid article,
.info-grid article,
.trust-grid article,
.related-article-grid a,
.tool-grid article,
.provider-grid article,
.review-snippet-grid article,
.summary-grid article,
.steps article,
.provider-mini-card,
.hero-note-card,
.provider-logo-panel,
.terminal-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius);
    background: #fff;
    box-shadow: var(--pw-shadow-soft);
}

.hero-proof strong {
    display: block;
    color: var(--pw-ink);
    font-size: 24px;
    line-height: 1.1;
}

.hero-proof span,
.metric-strip span,
.article-grid p,
.feature-grid p,
.comparison-grid p,
.info-grid p,
.trust-grid p,
.related-article-grid span,
.summary-grid p,
.steps p,
.form-note,
.field-help,
.hero-context {
    color: var(--pw-muted);
}

.compare-card {
    width: 100%;
    max-width: 450px;
    justify-self: end;
    padding: 22px;
    border: 1px solid #cfdbea;
    border-radius: var(--pw-radius-lg);
    background: #fff;
    box-shadow: var(--pw-shadow);
}

.compare-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--pw-line-soft);
    color: var(--pw-text);
    font-size: 13px;
    font-weight: 900;
}

.form-head p {
    margin: 0 0 4px;
    color: var(--pw-blue-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.form-head h2 {
    font-size: 23px;
    line-height: 1.15;
}

.form-head span {
    display: block;
    margin-top: 8px;
    color: var(--pw-muted);
    font-size: 13px;
}

.compare-card label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 13px 0 7px;
    color: var(--pw-ink);
    font-size: 14px;
    font-weight: 900;
}

.compare-card label span {
    color: var(--pw-muted);
    font-weight: 700;
}

.input-shell {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--pw-line);
    border-radius: 8px;
    background: #fff;
}

.input-shell:focus-within {
    border-color: var(--pw-blue);
    box-shadow: 0 0 0 4px rgba(23,105,224,.12);
}

.input-shell i {
    display: grid;
    place-items: center;
    height: 48px;
    color: var(--pw-blue) !important;
    background: var(--pw-soft);
}

.input-shell input,
.switch-alert-form input {
    width: 100%;
    min-height: 48px;
    border: 0;
    outline: 0;
    color: var(--pw-ink);
    background: #fff;
    font: inherit;
    font-weight: 700;
}

.input-shell input {
    padding: 0 13px;
}

.field-help,
.field-error,
.form-note {
    margin-top: 6px;
    font-size: 12px;
}

.field-help,
.form-note {
    display: none;
}

.field-error {
    display: none;
    color: var(--pw-orange);
    font-weight: 800;
}

.address-autofill {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 40px;
    margin: 14px 0;
    padding: 9px 12px;
    border: 1px solid var(--pw-line);
    border-radius: 8px;
    color: var(--pw-text);
    background: var(--pw-bg);
    font-size: 13px;
    font-weight: 800;
}

.compare-card .address-result-button {
    width: 100%;
    min-height: 54px;
    margin-top: 6px;
}

.compare-card-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--pw-line-soft);
    color: var(--pw-text);
    font-size: 13px;
    font-weight: 800;
}

.metric-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
    margin: 0;
    padding: 26px var(--pw-edge) 18px;
    background: transparent;
    border: 0;
}

.metric-strip div {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    column-gap: 12px;
    padding: 16px;
}

.metric-strip i,
.feature-grid i,
.trust-grid i,
.article-grid span,
.related-article-grid i,
.provider-mini-card i {
    color: var(--pw-blue) !important;
}

.metric-strip strong {
    color: var(--pw-ink);
    font-size: 15px;
}

.metric-strip span {
    grid-column: 2;
    font-size: 13px;
}

.content-band,
.provider-logo-section,
.faq,
.final-cta,
.article-layout,
.footer-inner,
.footer-alert,
.dark-panel,
.split-section {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 64px var(--pw-edge);
}

.provider-logo-section {
    overflow: hidden;
}

.provider-toplist {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 24px;
    width: min(var(--pw-container), calc(100% - 48px));
    margin: 34px auto;
    padding: 24px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius-lg);
    background:
        linear-gradient(135deg, rgba(238, 244, 255, 0.82), rgba(255, 255, 255, 0.96));
    box-shadow: var(--pw-shadow-soft);
}

.article-content .provider-toplist {
    width: 100%;
    margin: 34px 0;
    padding: 22px;
}

.provider-toplist-copy h2 {
    margin: 0;
    font-size: clamp(23px, 2vw, 30px);
}

.provider-toplist-copy p {
    margin-top: 10px;
    color: var(--pw-text);
}

.provider-toplist-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.provider-rank-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 11px;
    min-height: 68px;
    padding: 12px;
    border: 1px solid var(--pw-line);
    border-radius: 10px;
    color: var(--pw-ink);
    background: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.04);
}

.provider-rank-card:hover {
    border-color: #b8c9e4;
    transform: translateY(-1px);
}

.provider-rank-logo {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--pw-line-soft);
    border-radius: 10px;
    background: #fff;
}

.provider-rank-logo img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.provider-rank-card strong,
.provider-rank-card small {
    display: block;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.provider-rank-card strong {
    font-size: 14px;
}

.provider-rank-card small {
    margin-top: 2px;
    color: var(--pw-muted);
    font-size: 12px;
    font-weight: 750;
}

.content-band + .content-band,
.content-band + .faq,
.faq + .content-band {
    border-top: 1px solid var(--pw-line-soft);
}

.muted-band,
.provider-logo-section,
.trust-section,
.dark-panel,
.split-section {
    background:
        linear-gradient(90deg, rgba(247,249,252,.98), rgba(247,249,252,.92)),
        var(--pw-bg) !important;
}

.intro-grid {
    background:
        linear-gradient(90deg, #fff 0%, rgba(255,255,255,.96) 58%, rgba(238,244,255,.72) 100%),
        var(--pw-panel) !important;
}

.editorial-photo-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 16px;
    margin-top: 26px;
}

.photo-tile {
    position: relative;
    display: flex;
    min-height: 245px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    margin: 0;
    padding: 20px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius-lg);
    background: #111827 center / cover no-repeat;
    box-shadow: var(--pw-shadow-soft);
}

.photo-tile::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,24,40,.08), rgba(16,24,40,.72));
}

.photo-tile > * {
    position: relative;
    z-index: 1;
}

.photo-tile span {
    width: fit-content;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255,255,255,.16);
    font-size: 12px;
    font-weight: 900;
}

.photo-tile figcaption {
    max-width: 360px;
    color: #fff;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.35;
}

.photo-tile-home {
    background-image: url("../img/stock/modern-home.jpg");
}

.photo-tile-solar {
    background-image: url("../img/stock/solar-roof.jpg");
}

.photo-tile-advice {
    background-image: url("../img/stock/home-advice.jpg");
}

.premium-photo-band {
    position: relative;
    display: grid;
    align-items: end;
    width: min(var(--pw-container), calc(100% - 48px));
    min-height: 300px;
    margin: 34px auto;
    overflow: hidden;
    border: 1px solid var(--pw-line);
    border-radius: 14px;
    background: #111827 center / cover no-repeat;
    box-shadow: var(--pw-shadow);
}

.premium-photo-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 20, 40, 0.76) 0%, rgba(10, 20, 40, 0.48) 46%, rgba(10, 20, 40, 0.10) 100%),
        linear-gradient(180deg, rgba(16, 24, 40, 0.03), rgba(16, 24, 40, 0.28));
}

.premium-photo-copy {
    position: relative;
    z-index: 1;
    max-width: 650px;
    padding: 34px;
}

.premium-photo-copy .eyebrow,
.premium-photo-copy h2,
.premium-photo-copy p {
    color: #fff !important;
}

.premium-photo-copy h2 {
    margin: 0;
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.08;
}

.premium-photo-copy p:not(.eyebrow) {
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 17px;
}

.premium-photo-points {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 20px;
}

.premium-photo-points span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    font-size: 13px;
    font-weight: 900;
    backdrop-filter: blur(10px);
}

.premium-photo-points i {
    color: #fff !important;
}

.premium-photo-home {
    background-image: url("../img/stock/modern-home.jpg");
}

.premium-photo-solar {
    background-image: url("../img/stock/solar-roof.jpg");
}

.premium-photo-advice {
    background-image: url("../img/stock/home-advice.jpg");
}

.premium-photo-market {
    background-image: url("../img/backgrounds/power-grid.jpg");
}

.article-content .premium-photo-band {
    width: 100%;
    min-height: 310px;
    margin: 34px 0;
}

.article-content .premium-photo-copy {
    max-width: 600px;
    padding: 28px;
}

@media (min-width: 1024px) {
    .hero,
    .article-hero,
    .provider-hero,
    .page-hero,
    .topic-hero,
    .knowledge-hero,
    .tools-hero {
        background:
            radial-gradient(circle at 88% 18%, rgba(23, 105, 224, 0.08), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f8fafc 56%, #eef5ff 100%) !important;
        background-image:
            radial-gradient(circle at 88% 18%, rgba(23, 105, 224, 0.08), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f8fafc 56%, #eef5ff 100%) !important;
        background-size: auto !important;
        background-position: center !important;
    }

    .hero::before {
        display: none !important;
        content: none !important;
    }

    .hero::after {
        background: linear-gradient(180deg, rgba(255,255,255,0) 78%, rgba(248,250,252,0.86) 100%) !important;
    }

    .hero-copy,
    .compare-card {
        position: relative;
        z-index: 2;
    }

    .page-hero,
    .article-hero,
    .provider-hero,
    .topic-hero,
    .knowledge-hero,
    .tools-hero {
        position: relative;
        overflow: hidden;
    }

    .page-hero::before,
    .article-hero::before,
    .provider-hero::before,
    .topic-hero::before,
    .knowledge-hero::before,
    .tools-hero::before {
        display: none !important;
        content: none !important;
    }

    .page-hero > *,
    .article-hero > *,
    .provider-hero > *,
    .topic-hero > *,
    .knowledge-hero > *,
    .tools-hero > * {
        position: relative;
        z-index: 1;
    }
}

.dark-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
    gap: 32px;
    color: var(--pw-ink);
    border-top: 1px solid var(--pw-line);
    border-bottom: 1px solid var(--pw-line);
}

.dark-panel h2,
.dark-panel p,
.dark-panel .eyebrow {
    color: inherit;
}

.section-heading {
    max-width: 760px;
    margin: 0 0 28px 0 !important;
}

.compact-heading {
    max-width: 620px;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.section-heading p:not(.eyebrow) {
    margin-top: 12px;
    color: var(--pw-text);
    font-size: 17px;
}

.feature-grid,
.info-grid,
.article-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comparison-grid,
.trust-grid,
.summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.related-article-grid,
.tool-grid,
.provider-grid,
.review-snippet-grid,
.provider-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article,
.comparison-grid article,
.article-grid article,
.info-grid article,
.trust-grid article,
.summary-grid article,
.steps article {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.feature-grid article:hover,
.comparison-grid article:hover,
.article-grid article:hover,
.related-article-grid a:hover,
.tool-grid article:hover,
.provider-grid article:hover,
.provider-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--pw-shadow);
}

.feature-grid article,
.comparison-grid article,
.article-grid article,
.related-article-grid a,
.tool-grid article,
.provider-grid article,
.provider-mini-card {
    transition: transform .16s ease, box-shadow .16s ease;
}

.guide-columns,
.split-section,
.footer-alert,
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
}

.guide-columns article,
.responsive-table-wrap,
.reviews-list,
.review-form,
.energy-price-widget,
.whitelabel-shell {
    padding: 24px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius);
    background: #fff;
    box-shadow: var(--pw-shadow-soft);
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    padding: 14px 16px;
    border: 1px solid var(--pw-line);
    border-radius: 8px;
    background: #fff;
}

.check-list i {
    color: var(--pw-blue) !important;
}

.article-layout {
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    max-width: none;
}

.article-toc {
    position: sticky;
    top: 108px;
    padding: 18px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius);
    background: #fff;
    box-shadow: var(--pw-shadow-soft);
}

.article-toc strong {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.article-toc a {
    display: block;
    padding: 8px 0;
    border-top: 1px solid var(--pw-line-soft);
    color: var(--pw-text);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.article-content {
    min-width: 0;
    width: 100%;
    max-width: none !important;
    padding: 34px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius-lg);
    background: #fff;
    box-shadow: var(--pw-shadow-soft);
}

.article-content section + section {
    margin-top: 34px;
    padding-top: 30px;
    border-top: 1px solid var(--pw-line-soft);
}

.article-content h2 {
    font-size: clamp(24px, 2.2vw, 32px);
}

.article-content p {
    margin-top: 12px;
    color: var(--pw-text);
    font-size: 17px;
}

.faq {
    background: #fff;
}

.faq details {
    max-width: var(--pw-container);
    margin: 0 auto 10px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius);
    background: #fff;
    box-shadow: var(--pw-shadow-soft);
}

.faq summary {
    cursor: pointer;
    padding: 18px 20px;
    color: var(--pw-ink);
    font-weight: 900;
}

.faq details p {
    padding: 0 20px 20px;
    color: var(--pw-text);
}

.logo-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 4px 0;
    contain: paint;
}

.logo-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 12px;
    width: 100%;
    max-width: 100%;
    animation: none !important;
}

.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--pw-line);
    border-radius: 999px;
    background: #fff;
    color: var(--pw-text);
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.logo-pill img {
    width: 28px;
    height: 28px;
    border-radius: 7px;
}

.provider-logo-panel {
    display: grid;
    justify-items: center;
    gap: 10px;
}

.provider-logo-panel img {
    width: 86px;
    height: 86px;
    border-radius: 18px;
}

.provider-offer-note {
    margin-top: 14px;
    color: var(--pw-muted);
    font-size: 13px;
}

.final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--pw-bg);
    border-top: 1px solid var(--pw-line);
}

.site-footer {
    color: #fff;
    background: #111827;
}

.footer-alert {
    grid-template-columns: minmax(0, .9fr) minmax(420px, 1fr);
    color: var(--pw-ink);
    background: var(--pw-bg);
    border-top: 1px solid var(--pw-line);
    border-bottom: 1px solid var(--pw-line);
}

.switch-alert-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 20px;
    border: 1px solid var(--pw-line);
    border-radius: var(--pw-radius-lg);
    background: #fff;
    box-shadow: var(--pw-shadow-soft);
}

.switch-alert-form label {
    display: grid;
    gap: 7px;
    color: var(--pw-text);
    font-size: 13px;
    font-weight: 900;
}

.switch-alert-form input {
    padding: 0 12px;
    border: 1px solid var(--pw-line);
    border-radius: 8px;
}

.switch-alert-consent,
.switch-alert-form button {
    grid-column: 1 / -1;
}

.switch-alert-consent {
    display: grid !important;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: start;
}

.switch-alert-consent input {
    min-height: auto;
    margin-top: 4px;
}

.footer-inner {
    background: #111827;
}

.footer-brand {
    display: grid;
    gap: 12px;
    max-width: 420px;
}

.footer-logo {
    width: 260px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #fff;
}

.footer-brand p,
.footer-company,
.footer-disclaimer,
.footer-bottom,
.footer-columns a {
    color: rgba(255,255,255,.78);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
    margin-top: 34px;
}

.footer-columns h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 15px;
}

.footer-columns a {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.footer-columns a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.16);
    font-size: 13px;
}

.cookie-notice {
    right: auto !important;
    bottom: 18px !important;
    left: 18px !important;
    max-width: 340px !important;
    padding: 16px !important;
    border: 1px solid var(--pw-line) !important;
    border-radius: var(--pw-radius) !important;
    background: #fff !important;
    box-shadow: var(--pw-shadow) !important;
}

.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 12px;
}

.cookie-notice strong {
    color: var(--pw-ink);
}

.cookie-notice p {
    color: var(--pw-muted);
    font-size: 13px;
}

.cookie-actions button {
    min-width: 92px;
    min-height: 42px;
    padding: 10px 14px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--pw-blue);
    font-weight: 900;
}

#wle_vergelijker,
.wle_vergelijker,
#wle_vergelijker_start {
    font-family: "Manrope", Arial, sans-serif !important;
}

#wle_vergelijker,
#wle_vergelijker_start,
#wle_vergelijker .wle_interactive_box,
#wle_vergelijker .wle_postalcheck,
#wle_vergelijker .wle_postalcheck_container {
    background: #fff !important;
}

#wle_vergelijker [class*="button"],
#wle_vergelijker button {
    border-radius: 8px !important;
}

#wle_vergelijker .wle_button,
#wle_vergelijker button,
#wle_vergelijker [class*="primary"] {
    color: #fff !important;
    background: var(--pw-blue) !important;
    border-color: var(--pw-blue) !important;
}

#wle_vergelijker svg,
#wle_vergelijker i,
#wle_vergelijker [class*="icon"] {
    color: var(--pw-blue) !important;
    fill: currentColor !important;
}

#wle_vergelijker,
#wle_vergelijker * {
    accent-color: var(--pw-blue);
}

/* Final UX polish: warmer sections, stronger readability, neutral comparer. */
body {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 42%, #ffffff 100%);
}

main {
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 34%, #ffffff 100%);
}

.lead,
.section-heading p:not(.eyebrow),
.article-content p,
.feature-grid p,
.comparison-grid p,
.info-grid p,
.trust-grid p,
.summary-grid p,
.steps p,
.related-article-grid span {
    color: #3b4758;
}

.content-band {
    position: relative;
}

.content-band:nth-of-type(even):not(.whitelabel-section):not(.faq) {
    background:
        linear-gradient(135deg, rgba(247, 250, 253, 0.98), rgba(241, 246, 252, 0.92)),
        var(--pw-bg) !important;
}

.content-band:nth-of-type(odd):not(.whitelabel-section):not(.faq) {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.9)),
        #fff !important;
}

.muted-band,
.trust-section,
.provider-logo-section {
    background:
        linear-gradient(135deg, rgba(243, 247, 252, 0.98), rgba(250, 252, 255, 0.92)),
        var(--pw-bg) !important;
}

.section-heading {
    padding-bottom: 2px;
}

.section-heading h2 {
    max-width: 820px;
}

.feature-grid article,
.comparison-grid article,
.article-grid article,
.info-grid article,
.trust-grid article,
.summary-grid article,
.steps article,
.related-article-grid a,
.tool-grid article,
.provider-grid article,
.review-snippet-grid article,
.provider-mini-card {
    border-color: #dbe4ef;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    box-shadow: 0 10px 28px rgba(16, 24, 40, 0.055);
}

.feature-grid article i,
.trust-grid article i,
.metric-strip i {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: #eef4ff;
}

.comparison-grid article strong,
.summary-grid article span,
.steps article span {
    width: fit-content;
    margin-top: auto;
    padding: 6px 10px;
    border-radius: 999px;
    color: #22314a;
    background: #eef2f7;
    font-size: 12px;
    font-weight: 900;
}

.metric-strip div {
    background: #ffffff;
}

.hero,
.page-hero,
.article-hero,
.provider-hero,
.tools-hero,
.alert-page-hero,
.knowledge-hero,
.results-hero {
    border-bottom-color: #cfdae8;
}

.hero-kicker span,
.hero-kicker strong,
.hero-highlights span,
.signal-row span,
.article-meta-strip span {
    border-color: #d8e2ef;
    color: #2f3b4d;
    background: rgba(255, 255, 255, 0.86);
}

.article-content,
.article-toc,
.guide-columns article,
.responsive-table-wrap,
.reviews-list,
.review-form,
.energy-price-widget {
    border-color: #dbe4ef;
}

.faq details {
    border-color: #dbe4ef;
}

.faq summary:hover {
    background: #f7f9fc;
}

.editorial-photo-grid {
    padding-top: 4px;
}

.photo-tile {
    border-color: rgba(16, 24, 40, 0.12);
}

.whitelabel-section {
    background:
        linear-gradient(135deg, rgba(241, 246, 252, 0.98), rgba(255, 255, 255, 0.94)),
        url("../img/stock/energy-light.jpg") right center / 34% 100% no-repeat,
        var(--pw-bg) !important;
}

.whitelabel-section .section-heading {
    max-width: 820px;
}

.whitelabel-tool-frame {
    overflow: hidden;
    padding: 18px;
    border: 1px solid #d6e0ec;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 44px rgba(16, 24, 40, 0.08);
    backdrop-filter: blur(10px);
}

.whitelabel-tool-frame > style {
    display: none !important;
}

#wle_vergelijker {
    color: #172033 !important;
    background: transparent !important;
}

#wle_vergelijker_start,
#wle_vergelijker .wle_interactive_box,
#wle_vergelijker .wle_postalcheck,
#wle_vergelijker .wle_postalcheck_container,
#wle_vergelijker .wle_postalresult,
#wle_vergelijker .wle_result,
#wle_vergelijker .wle_offer,
#wle_vergelijker .wle_card,
#wle_vergelijker .wle_product,
#wle_vergelijker .wle_filter,
#wle_vergelijker .wle_filterbox,
#wle_vergelijker .wle_sidebar,
#wle_vergelijker .wle_supplier,
#wle_vergelijker .wle_price_box {
    color: #172033 !important;
    background: #ffffff !important;
    border-color: #dde5ef !important;
    box-shadow: 0 10px 26px rgba(16, 24, 40, 0.055) !important;
}

#wle_vergelijker [class*="green"],
#wle_vergelijker [class*="Green"],
#wle_vergelijker [class*="success"],
#wle_vergelijker [class*="Success"],
#wle_vergelijker [class*="badge"],
#wle_vergelijker [class*="Badge"],
#wle_vergelijker [class*="tag"],
#wle_vergelijker [class*="Tag"] {
    color: #172033 !important;
    background: #ffffff !important;
    border-color: #e4eaf2 !important;
}

#wle_vergelijker [style*="green"],
#wle_vergelijker [style*="#0"],
#wle_vergelijker [style*="rgb(0"],
#wle_vergelijker [style*="rgb(12"],
#wle_vergelijker [style*="rgb(22"],
#wle_vergelijker [style*="rgb(30"],
#wle_vergelijker [style*="rgb(34"] {
    color: #172033 !important;
    background: #ffffff !important;
    border-color: #e4eaf2 !important;
}

#wle_vergelijker [class*="label"],
#wle_vergelijker [class*="Label"],
#wle_vergelijker [class*="pill"],
#wle_vergelijker [class*="Pill"],
#wle_vergelijker [class*="chip"],
#wle_vergelijker [class*="Chip"],
#wle_vergelijker [class*="cashback"],
#wle_vergelijker [class*="Cashback"],
#wle_vergelijker [class*="termijn"],
#wle_vergelijker [class*="Termijn"],
#wle_vergelijker .wle_product_discount {
    background: #ffffff !important;
    border-color: #e4eaf2 !important;
    box-shadow: none !important;
}

#wle_vergelijker input,
#wle_vergelijker select,
#wle_vergelijker textarea {
    min-height: 42px;
}

#wle_vergelijker input[type="checkbox"],
#wle_vergelijker input[type="radio"] {
    min-height: 0 !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 8px 0 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    background: #ffffff !important;
    border: 1.5px solid #98a2b3 !important;
    border-radius: 5px !important;
    box-shadow: none !important;
    accent-color: var(--pw-blue) !important;
    vertical-align: middle !important;
}

#wle_vergelijker input[type="radio"] {
    border-radius: 999px !important;
}

#wle_vergelijker input[type="checkbox"]:checked,
#wle_vergelijker input[type="radio"]:checked {
    background: var(--pw-blue) !important;
    border-color: var(--pw-blue) !important;
    box-shadow: inset 0 0 0 3px #ffffff !important;
}

#wle_vergelijker [class*="checkbox"],
#wle_vergelijker [class*="Checkbox"],
#wle_vergelijker [class*="checkBox"],
#wle_vergelijker [class*="check_box"],
#wle_vergelijker [class*="checkmark"],
#wle_vergelijker [class*="Checkmark"] {
    background: #ffffff !important;
    border-color: #98a2b3 !important;
    box-shadow: none !important;
}

#wle_vergelijker [class*="checkbox"]:checked,
#wle_vergelijker [class*="Checkbox"]:checked,
#wle_vergelijker [class*="checkBox"]:checked,
#wle_vergelijker [class*="check_box"]:checked,
#wle_vergelijker [class*="active"] [class*="checkbox"],
#wle_vergelijker [class*="selected"] [class*="checkbox"] {
    background: var(--pw-blue) !important;
    border-color: var(--pw-blue) !important;
}

#wle_vergelijker .wle_active,
#wle_vergelijker .wle_selected,
#wle_vergelijker .wle_option.wle_active,
#wle_vergelijker [aria-selected="true"] {
    background: #ffffff !important;
    border-color: #e4eaf2 !important;
    box-shadow: none !important;
}

#wle_vergelijker .wle_product_discount .wle_icon_container,
#wle_vergelijker .wle_product_discount .wle_icon,
#wle_vergelijker .wle_product_discount svg,
#wle_vergelijker [class*="compare"] .wle_icon_container,
#wle_vergelijker [class*="compare"] .wle_icon,
#wle_vergelijker [class*="compare"] .wle_checkbox_container,
#wle_vergelijker [class*="compare"] input[type="checkbox"],
#wle_vergelijker .wle_product_compare .wle_icon_container,
#wle_vergelijker .wle_product_compare .wle_checkbox_container,
#wle_vergelijker .wle_product_compare input[type="checkbox"],
#wle_vergelijker .wle_button_secondary .wle_icon_container,
#wle_vergelijker .wle_button_secondary .wle_icon,
#wle_vergelijker .wle_button_secondary svg,
#wle_vergelijker .wle_message .wle_icon_container,
#wle_vergelijker .wle_notice .wle_icon_container,
#wle_vergelijker .wle_alert .wle_icon_container,
#wle_vergelijker .wle_error .wle_icon_container {
    display: none !important;
    width: 0 !important;
    min-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    opacity: 0 !important;
    overflow: hidden !important;
}

#wle_vergelijker .wle_button_secondary,
#wle_vergelijker .wle_button_ghost,
#wle_vergelijker [class*="secondary"],
#wle_vergelijker [class*="ghost"] {
    color: #172033 !important;
    background: #ffffff !important;
    border-color: #d9e2ef !important;
    box-shadow: none !important;
}

#wle_vergelijker .wle_button:not(.wle_button_secondary):not(.wle_button_ghost),
#wle_vergelijker button:not([class*="secondary"]):not([class*="ghost"]),
#wle_vergelijker a[class*="button"]:not([class*="secondary"]):not([class*="ghost"]) {
    color: #ffffff !important;
    background: var(--pw-blue) !important;
    border-color: var(--pw-blue) !important;
    box-shadow: 0 10px 24px rgba(23, 105, 224, 0.18) !important;
}

#wle_vergelijker .wle_button:not(.wle_button_secondary):not(.wle_button_ghost):hover,
#wle_vergelijker button:not([class*="secondary"]):not([class*="ghost"]):hover,
#wle_vergelijker a[class*="button"]:not([class*="secondary"]):not([class*="ghost"]):hover {
    background: var(--pw-blue-dark) !important;
    border-color: var(--pw-blue-dark) !important;
}

@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 1fr auto;
        gap: 14px;
    }

    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: 230px;
    }

    .main-nav {
        grid-column: 1 / -1;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: thin;
    }

    .hero,
    .page-hero,
    .provider-hero,
    .tools-hero,
    .alert-page-hero,
    .knowledge-hero {
        grid-template-columns: 1fr;
    }

    .compare-card,
    .provider-logo-panel,
    .hero-note-card {
        justify-self: stretch;
        max-width: none;
    }

    .feature-grid,
    .info-grid,
    .article-grid,
    .comparison-grid,
    .trust-grid,
    .summary-grid,
    .steps,
    .related-article-grid,
    .tool-grid,
    .provider-grid,
    .review-snippet-grid,
    .provider-mini-grid,
    .metric-strip,
    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-layout,
    .footer-alert,
    .guide-columns,
    .dark-panel,
    .split-section {
        grid-template-columns: 1fr;
    }

    .article-content {
        width: 100%;
    }

    .article-toc {
        position: static;
    }
}

@media (max-width: 760px) {
    body {
        font-size: 15px;
    }

    .top-usp-bar {
        display: flex;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding: 8px 16px;
    }

    .top-usp-bar span {
        flex: 0 0 auto;
    }

    .site-header {
        grid-template-columns: 1fr;
        padding: 12px 16px;
        min-height: auto;
    }

    .brand {
        justify-content: center;
        width: 100%;
    }

    .brand-logo {
        width: min(230px, 76vw);
    }

    .header-cta {
        display: none;
    }

    .main-nav {
        width: 100%;
        margin: 0;
        padding-bottom: 6px;
    }

    .main-nav button,
    .nav-link-icon {
        font-size: 13px;
        min-height: 38px;
    }

    .mega-menu,
    .compact-mega {
        position: fixed;
        top: 132px;
        right: 12px;
        left: 12px;
        width: auto;
        max-height: calc(100vh - 150px);
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .hero,
    .page-hero,
    .article-hero,
    .provider-hero,
    .tools-hero,
    .alert-page-hero,
    .knowledge-hero,
    .results-hero {
        padding: 36px 18px;
    }

    h1,
    .article-hero h1,
    .provider-hero h1,
    .topic-hero h1,
    .page-hero h1 {
        font-size: clamp(29px, 8vw, 36px);
        line-height: 1.12;
    }

    h2 {
        font-size: clamp(23px, 7vw, 30px);
    }

    .lead {
        font-size: 16px;
    }

    .hero-proof,
    .editorial-photo-grid,
    .provider-toplist,
    .provider-toplist-grid,
    .feature-grid,
    .info-grid,
    .article-grid,
    .comparison-grid,
    .trust-grid,
    .summary-grid,
    .steps,
    .related-article-grid,
    .tool-grid,
    .provider-grid,
    .review-snippet-grid,
    .provider-mini-grid,
    .metric-strip,
    .footer-columns,
    .switch-alert-form {
        grid-template-columns: 1fr;
    }

    .premium-photo-band,
    .article-content .premium-photo-band {
        width: calc(100% - 36px);
        min-height: 330px;
        margin: 28px auto;
        border-radius: 12px;
    }

    .article-content .premium-photo-band {
        width: 100%;
    }

    .premium-photo-band::before {
        background:
            linear-gradient(180deg, rgba(6, 22, 76, 0.82), rgba(6, 22, 76, 0.58)),
            linear-gradient(180deg, rgba(16, 24, 40, 0.08), rgba(16, 24, 40, 0.44));
    }

    .premium-photo-copy,
    .article-content .premium-photo-copy {
        padding: 22px;
    }

    .premium-photo-copy h2 {
        font-size: 27px;
    }

    .premium-photo-points {
        gap: 7px;
    }

    .premium-photo-points span {
        width: 100%;
        border-radius: 9px;
    }

    .content-band,
    .provider-logo-section,
    .faq,
    .final-cta,
    .article-layout,
    .footer-inner,
    .footer-alert,
    .dark-panel,
    .split-section {
        padding: 42px 18px;
    }

    .breadcrumbs {
        padding: 12px 18px;
        font-size: 12px;
    }

    .compare-card,
    .article-content,
    .guide-columns article,
    .responsive-table-wrap,
    .reviews-list,
    .review-form,
    .energy-price-widget,
    .whitelabel-shell {
        padding: 18px;
    }

    .form-head h2 {
        font-size: 23px;
    }

    .hero-actions,
    .final-cta {
        align-items: stretch;
        flex-direction: column;
    }

    .primary-link,
    .secondary-link,
    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .article-meta-strip span,
    .hero-highlights span,
    .signal-row span,
    .hero-kicker span,
    .hero-kicker strong {
        width: 100%;
        border-radius: 8px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .cookie-notice {
        right: 10px !important;
        bottom: 10px !important;
        left: 10px !important;
        max-width: none !important;
    }
}

/* Knowledge page polish: keep article pages on one consistent, calm grid. */
.article-hero,
.topic-hero,
.knowledge-hero {
    width: 100%;
    max-width: none;
    padding-right: var(--pw-edge);
    padding-left: var(--pw-edge);
}

.article-hero > *,
.topic-hero > *,
.knowledge-hero > * {
    max-width: var(--pw-container);
}

.article-layout {
    width: 100%;
    max-width: var(--pw-container);
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 28px;
}

.article-layout > * {
    min-width: 0;
}

.article-content {
    justify-self: stretch;
    width: 100% !important;
    max-width: none !important;
}

.article-content img,
.article-content figure {
    max-width: 100%;
}

@media (min-width: 1181px) {
    .mega-menu,
    .compact-mega {
        position: fixed;
        top: 120px;
        right: auto;
        left: 50%;
        max-width: calc(100vw - 48px);
        transform: translate(-50%, 8px);
    }

    .nav-mega:hover .mega-menu,
    .nav-mega > button[aria-expanded="true"] + .mega-menu,
    .nav-mega.is-open .mega-menu {
        transform: translate(-50%, 0);
    }
}

@media (max-width: 1180px) {
    .mega-menu,
    .compact-mega {
        position: fixed;
        top: 132px;
        right: 24px;
        left: 24px;
        width: auto;
        max-height: calc(100vh - 150px);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow-y: auto;
    }

    .article-layout {
        max-width: none;
        padding-right: var(--pw-edge);
        padding-left: var(--pw-edge);
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .article-hero,
    .topic-hero,
    .knowledge-hero,
    .article-layout {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mega-menu,
    .compact-mega {
        top: 132px;
        right: 12px;
        left: 12px;
        grid-template-columns: 1fr;
    }
}

/* Mobile header cleanup: no clipped USP bar and no half-visible navigation. */
@media (max-width: 760px) {
    .top-usp-bar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 16px;
        overflow: hidden;
        min-height: 34px;
        padding: 0 14px;
        font-size: 11px;
        line-height: 1.25;
    }

    .top-usp-bar span {
        justify-content: flex-start;
        min-width: 0;
        padding: 4px 6px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .top-usp-bar i {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .top-usp-bar span:nth-child(n+3) {
        display: none;
    }

    .site-header {
        gap: 8px;
        padding: 10px 14px 12px;
    }

    .brand {
        justify-content: flex-start;
        width: 100%;
        min-width: 0;
    }

    .brand-logo {
        width: min(292px, 78vw);
        max-height: 44px;
    }

    .main-nav {
        display: flex;
        gap: 7px;
        width: 100%;
        overflow-x: auto;
        overflow-y: visible;
        padding: 8px 0 2px;
        border-top: 1px solid var(--pw-line-soft);
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-mega,
    .nav-link-icon {
        flex: 0 0 auto;
        min-width: auto;
        width: auto;
    }

    .main-nav button,
    .nav-link-icon {
        justify-content: center;
        width: auto;
        min-height: 37px;
        padding: 8px 11px;
        border: 1px solid var(--pw-line);
        border-radius: 9px;
        background: #fff;
        font-size: 12px;
        box-shadow: 0 4px 12px rgba(16, 24, 40, 0.04);
    }

    .main-nav button {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .mega-menu,
    .compact-mega {
        top: 184px;
        right: 10px;
        left: 10px;
        max-height: calc(100vh - 198px);
    }

    .nav-mega:hover .mega-menu {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .nav-mega.is-open .mega-menu {
        display: none;
        visibility: hidden;
        opacity: 0;
    }

    .mobile-menu-drawer {
        position: fixed;
        top: 168px;
        right: 10px;
        left: 10px;
        z-index: 100000;
        max-height: calc(100vh - 184px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 12px;
        border: 1px solid var(--pw-line);
        border-radius: 14px;
        background: #fff;
        box-shadow: 0 24px 70px rgba(16, 24, 40, 0.22);
    }

    .mobile-menu-drawer[hidden] {
        display: none !important;
    }

    .mobile-menu-drawer-inner {
        display: grid;
        gap: 16px;
    }

    .mobile-menu-drawer-inner div {
        min-width: 0;
    }

    .mobile-menu-drawer-inner strong {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 8px;
        color: var(--pw-ink);
        font-size: 13px;
        font-weight: 900;
    }

    .mobile-menu-drawer-inner a {
        display: grid;
        grid-template-columns: 24px minmax(0, 1fr);
        align-items: center;
        gap: 9px;
        min-height: 42px;
        padding: 10px 8px;
        border-radius: 9px;
        color: var(--pw-text);
        font-size: 14px;
        font-weight: 800;
        text-decoration: none;
    }

    .mobile-menu-drawer-inner a + a {
        border-top: 1px solid var(--pw-line-soft);
    }

    .mobile-menu-drawer-inner i {
        color: var(--pw-blue) !important;
    }

    body {
        font-size: 14px;
    }

    .hero,
    .article-hero,
    .page-hero,
    .provider-hero,
    .tools-hero,
    .alert-page-hero,
    .knowledge-hero,
    .topic-hero,
    .results-hero {
        padding-top: 36px !important;
        padding-bottom: 38px !important;
    }

    .hero h1,
    .article-hero h1,
    .page-hero h1,
    .provider-hero h1,
    .tools-hero h1,
    .alert-page-hero h1,
    .knowledge-hero h1,
    .topic-hero h1 {
        font-size: clamp(30px, 9vw, 40px) !important;
        line-height: 1.05 !important;
    }

    .lead,
    .hero .lead,
    .article-hero .lead,
    .page-hero .lead,
    .topic-hero .lead {
        font-size: 16px !important;
        line-height: 1.55 !important;
    }

    .compare-card {
        padding: 18px !important;
    }

    .content-band {
        padding-top: 42px !important;
        padding-bottom: 42px !important;
    }

    .article-content {
        padding: 22px !important;
    }
}

/* Final hero image override: keep photos out of hero backgrounds on every viewport. */
.hero,
.page-hero,
.article-hero,
.provider-hero,
.tools-hero,
.alert-page-hero,
.knowledge-hero,
.topic-hero,
.results-hero {
    background:
        radial-gradient(circle at 88% 18%, rgba(23, 105, 224, 0.08), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 56%, #eef5ff 100%) !important;
    background-image:
        radial-gradient(circle at 88% 18%, rgba(23, 105, 224, 0.08), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 56%, #eef5ff 100%) !important;
    background-size: auto !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.hero::before,
.page-hero::before,
.article-hero::before,
.provider-hero::before,
.tools-hero::before,
.alert-page-hero::before,
.knowledge-hero::before,
.topic-hero::before,
.results-hero::before,
.hero::after,
.page-hero::after,
.article-hero::after,
.provider-hero::after,
.tools-hero::after,
.alert-page-hero::after,
.knowledge-hero::after,
.topic-hero::after,
.results-hero::after {
    background-image: none !important;
}

/* Whitelabel comparer: no filled label/icon blocks, only clean text and thin borders. */
#wle_vergelijker .wle_icon_container,
#wle_vergelijker .wle_icon {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

#wle_vergelijker svg rect {
    fill: transparent !important;
    stroke: transparent !important;
}

#wle_vergelijker [class*="label"],
#wle_vergelijker [class*="Label"],
#wle_vergelijker [class*="badge"],
#wle_vergelijker [class*="Badge"],
#wle_vergelijker [class*="tag"],
#wle_vergelijker [class*="Tag"],
#wle_vergelijker [class*="pill"],
#wle_vergelijker [class*="Pill"],
#wle_vergelijker [class*="chip"],
#wle_vergelijker [class*="Chip"],
#wle_vergelijker .wle_product_discount {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    padding: 3px 7px !important;
    color: #172033 !important;
    background: transparent !important;
    border: 1px solid #d9e2ef !important;
    border-radius: 6px !important;
    box-shadow: none !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}

#wle_vergelijker .wle_filterbar .wle_icon_container,
#wle_vergelijker [class*="filter"] > .wle_icon_container,
#wle_vergelijker [class*="Filter"] > .wle_icon_container,
#wle_vergelijker [class*="price"] > .wle_icon_container,
#wle_vergelijker [class*="Price"] > .wle_icon_container,
#wle_vergelijker .wle_message > .wle_icon_container,
#wle_vergelijker .wle_notice > .wle_icon_container,
#wle_vergelijker .wle_alert > .wle_icon_container,
#wle_vergelijker .wle_error > .wle_icon_container,
#wle_vergelijker .wle_product_compare .wle_icon_container,
#wle_vergelijker [class*="compare"] > .wle_icon_container,
#wle_vergelijker [class*="Compare"] > .wle_icon_container {
    display: none !important;
}

#wle_vergelijker input[type="checkbox"],
#wle_vergelijker input[type="radio"],
#wle_vergelijker [class*="checkbox"],
#wle_vergelijker [class*="Checkbox"],
#wle_vergelijker [class*="checkBox"],
#wle_vergelijker [class*="check_box"],
#wle_vergelijker [class*="checkmark"],
#wle_vergelijker [class*="Checkmark"] {
    background: transparent !important;
    border-color: #c7d2e1 !important;
    box-shadow: none !important;
}
