/* ============================================================
   pollbox — Audience landing pages (/elections/*)
   Loaded AFTER landing.css, which owns the shared shell:
   .lp-container, .lp-btn*, .lp-nav, .lp-footer, .lp-faq,
   .lp-browser / .lp-candidate mockups and [data-reveal].

   Everything here is namespaced .lpg-* and is driven by a
   per-page accent hue set on <body> by the landing layout:
       --lpg-accent, --lpg-accent-dark, --lpg-accent-tint
   The brand teal stays the primary action colour everywhere.
   ============================================================ */

:root {
    --lpg-accent: var(--lp-brand);
    --lpg-accent-dark: var(--lp-brand-dark);
    --lpg-accent-tint: var(--lp-brand-tint);
}

/* ---------- Page shell ---------- */

.lpg-section {
    padding-block: 84px;
}

.lpg-section.is-tint {
    background: var(--lp-surface);
}

.lpg-section.is-accent {
    background: linear-gradient(180deg, var(--lpg-accent-tint) 0%, rgba(255, 255, 255, 0) 100%);
}

@media (max-width: 767.98px) {
    .lpg-section {
        padding-block: 54px;
    }
}

/* ---------- Breadcrumb ---------- */

.lpg-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0 0 22px;
    padding: 0;
    font-size: 13.5px;
    color: var(--lp-muted);
}

.lpg-breadcrumb a {
    color: var(--lp-muted);
    text-decoration: none;
}

.lpg-breadcrumb a:hover {
    color: var(--lpg-accent-dark);
}

.lpg-breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-inline-start: 8px;
    color: rgba(18, 48, 58, 0.25);
}

.lpg-breadcrumb li[aria-current] {
    color: var(--lp-ink);
    font-weight: 600;
}

/* ---------- Hero ---------- */

.lpg-hero {
    position: relative;
    padding-top: 128px;
    padding-bottom: 76px;
    background:
        radial-gradient(880px 460px at 88% -12%, var(--lpg-accent-tint), transparent 66%),
        radial-gradient(680px 400px at 4% 108%, rgba(58, 142, 157, 0.1), transparent 62%),
        linear-gradient(180deg, #f6fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.lpg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(18, 48, 58, 0.07) 1px, transparent 1px);
    background-size: 26px 26px;
    -webkit-mask-image: radial-gradient(700px 460px at 20% 34%, #000 0%, transparent 76%);
    mask-image: radial-gradient(700px 460px at 20% 34%, #000 0%, transparent 76%);
    pointer-events: none;
}

.lpg-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 52px;
    align-items: center;
}

.lpg-hero h1 {
    font-size: clamp(27px, 4vw, 44px);
    font-weight: 900;
    line-height: 1.55;
    margin-bottom: 18px;
}

.lpg-hero h1 .lpg-mark {
    position: relative;
    color: var(--lpg-accent-dark);
    white-space: nowrap;
}

.lpg-hero h1 .lpg-mark::after {
    content: '';
    position: absolute;
    inset-inline: -2px;
    bottom: 2px;
    height: 34%;
    background: var(--lpg-accent-tint);
    border-radius: 6px;
    z-index: -1;
}

.lpg-hero-sub {
    font-size: 16.5px;
    max-width: 560px;
    margin-bottom: 28px;
}

.lpg-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lpg-accent-tint);
    color: var(--lpg-accent-dark);
    font-size: 13.5px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.lpg-eyebrow i {
    font-size: 17px;
}

.lpg-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}

.lpg-hero-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: var(--lpg-accent-dark);
    font-weight: 600;
    margin-bottom: 22px;
}

.lpg-hero-note i {
    font-size: 19px;
}

.lpg-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lpg-chips li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: var(--lp-body);
}

.lpg-chips i {
    color: var(--lp-brand);
    font-size: 18px;
}

@media (max-width: 991.98px) {
    .lpg-hero {
        padding-top: 108px;
        padding-bottom: 56px;
    }

    .lpg-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lpg-hero-sub {
        max-width: none;
    }
}

@media (max-width: 575.98px) {
    .lpg-hero h1 {
        font-size: 26px;
    }

    .lpg-hero-sub {
        font-size: 15px;
    }

    .lpg-hero-ctas .lp-btn {
        width: 100%;
    }
}

/* ---------- Hero artwork frame ---------- */

.lpg-art {
    position: relative;
}

/* Kept flush with the artwork horizontally: any inline overhang escapes the
   sections that do not clip their overflow and gives the page a few pixels of
   sideways scroll on narrow screens. The blur alone carries the glow. */
.lpg-art-blob {
    position: absolute;
    inset-block: -8% -14%;
    inset-inline: 0;
    background: radial-gradient(closest-side, var(--lpg-accent-tint), transparent 72%);
    filter: blur(6px);
    pointer-events: none;
}

.lpg-panel {
    position: relative;
    background: #fff;
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    overflow: hidden;
}

.lpg-panel-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    background: var(--lp-surface);
    border-bottom: 1px solid var(--lp-card-border);
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-ink);
}

.lpg-panel-bar i {
    color: var(--lpg-accent-dark);
    font-size: 18px;
}

.lpg-panel-bar .lpg-panel-tag {
    margin-inline-start: auto;
    background: var(--lpg-accent-tint);
    color: var(--lpg-accent-dark);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11.5px;
}

.lpg-panel-body {
    padding: 22px 20px;
}

.lpg-badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 170, 111, 0.12);
    color: #1f8a56;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11.5px;
    font-weight: 700;
}

.lpg-badge-live::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2eaa6f;
    box-shadow: 0 0 0 0 rgba(46, 170, 111, 0.6);
    animation: lpg-pulse 1.8s infinite;
}

@keyframes lpg-pulse {
    70% { box-shadow: 0 0 0 8px rgba(46, 170, 111, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 170, 111, 0); }
}

/* Floating accent cards pinned to the artwork */

.lpg-float {
    position: absolute;
    background: #fff;
    border: 1px solid var(--lp-card-border);
    border-radius: 16px;
    box-shadow: var(--lp-shadow-md);
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-ink);
    display: flex;
    align-items: center;
    gap: 9px;
    z-index: 2;
}

.lpg-float i {
    font-size: 19px;
    color: var(--lpg-accent-dark);
}

.lpg-float.is-start {
    inset-inline-start: -18px;
    bottom: 34px;
}

.lpg-float.is-end {
    inset-inline-end: -14px;
    top: 46px;
}

@media (max-width: 1199.98px) {
    .lpg-float.is-start { inset-inline-start: 6px; }
    .lpg-float.is-end { inset-inline-end: 6px; }
}

@media (max-width: 575.98px) {
    .lpg-float {
        font-size: 12px;
        padding: 10px 13px;
    }
}

/* ---------- Stat band ---------- */

.lpg-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    background: #fff;
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-sm);
    padding: 28px 24px;
    margin-top: -44px;
    position: relative;
    z-index: 3;
}

.lpg-band-item {
    text-align: center;
    padding-inline: 8px;
}

.lpg-band-item:not(:last-child) {
    border-inline-end: 1px solid var(--lp-card-border);
}

.lpg-band-num {
    display: block;
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 900;
    color: var(--lpg-accent-dark);
    line-height: 1.4;
}

.lpg-band-label {
    font-size: 13.5px;
    color: var(--lp-muted);
}

@media (max-width: 767.98px) {
    .lpg-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px 12px;
        margin-top: -28px;
        padding: 22px 16px;
    }

    .lpg-band-item:nth-child(2n) {
        border-inline-end: 0;
    }

    .lpg-band-item:nth-child(-n+2) {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--lp-card-border);
    }
}

/* ---------- Section heads ---------- */

.lpg-head {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.lpg-head.is-start {
    margin-inline: 0;
    text-align: start;
}

.lpg-head-line {
    width: 54px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--lpg-accent) 0%, var(--lpg-accent-dark) 100%);
    margin: 0 auto 20px;
}

.lpg-head.is-start .lpg-head-line {
    margin-inline: 0;
}

.lpg-head h2 {
    font-size: clamp(24px, 3.2vw, 35px);
    font-weight: 900;
    margin-bottom: 14px;
}

.lpg-head p {
    font-size: 16.5px;
    color: var(--lp-muted);
    margin: 0;
}

@media (max-width: 575.98px) {
    .lpg-head {
        margin-bottom: 34px;
    }

    .lpg-head h2 {
        font-size: 23px;
        line-height: 1.62;
    }

    .lpg-head p {
        font-size: 14.5px;
    }
}

/* ---------- Grids & cards ---------- */

.lpg-grid-2,
.lpg-grid-3,
.lpg-grid-4 {
    display: grid;
    gap: 22px;
}

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

@media (max-width: 991.98px) {
    .lpg-grid-3,
    .lpg-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 649.98px) {
    .lpg-grid-2,
    .lpg-grid-3,
    .lpg-grid-4 { grid-template-columns: 1fr; }
}

.lpg-card {
    background: #fff;
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.lpg-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lp-shadow-md);
    border-color: color-mix(in srgb, var(--lpg-accent) 34%, transparent);
}

.lpg-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--lpg-accent-tint);
    color: var(--lpg-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.lpg-card h3 {
    font-size: 17.5px;
    margin-bottom: 10px;
}

.lpg-card p {
    font-size: 14.5px;
    margin: 0;
}

.lpg-card p + p {
    margin-top: 10px;
}

@media (max-width: 575.98px) {
    .lpg-card {
        padding: 23px 21px;
    }
}

/* ---------- Before / after comparison ---------- */

.lpg-compare {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

@media (max-width: 767.98px) {
    .lpg-compare {
        grid-template-columns: 1fr;
    }
}

.lpg-compare-col {
    border-radius: var(--lp-radius-lg);
    padding: 30px 26px;
    border: 1px solid var(--lp-card-border);
    background: #fff;
}

.lpg-compare-col.is-old {
    background: #fbf7f6;
    border-color: rgba(190, 82, 62, 0.2);
}

.lpg-compare-col.is-new {
    background: linear-gradient(160deg, #ffffff 0%, var(--lpg-accent-tint) 160%);
    border-color: color-mix(in srgb, var(--lpg-accent) 32%, transparent);
    box-shadow: var(--lp-shadow-md);
}

.lpg-compare-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16.5px;
    font-weight: 800;
    color: var(--lp-ink);
    margin-bottom: 18px;
}

.lpg-compare-title i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.lpg-compare-col.is-old .lpg-compare-title i {
    background: rgba(190, 82, 62, 0.12);
    color: #b1523e;
}

.lpg-compare-col.is-new .lpg-compare-title i {
    background: var(--lpg-accent-tint);
    color: var(--lpg-accent-dark);
}

.lpg-compare-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 13px;
}

.lpg-compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.85;
}

.lpg-compare-list li::before {
    font-family: remixicon;
    font-size: 18px;
    line-height: 1.6;
    flex-shrink: 0;
}

.lpg-compare-col.is-old .lpg-compare-list li::before {
    content: '\eb98';
    color: #b1523e;
}

.lpg-compare-col.is-new .lpg-compare-list li::before {
    content: '\eb80';
    color: #1f8a56;
}

/* ---------- Checklist ---------- */

.lpg-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.lpg-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.85;
}

.lpg-checklist li i {
    color: var(--lpg-accent-dark);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.lpg-checklist strong {
    color: var(--lp-ink);
}

/* ---------- Split (copy + panel) ---------- */

.lpg-split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 52px;
    align-items: center;
}

.lpg-split.is-narrow-art {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}

@media (max-width: 991.98px) {
    .lpg-split,
    .lpg-split.is-narrow-art {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ---------- Numbered steps (vertical timeline) ---------- */

.lpg-steps {
    counter-reset: lpg-step;
    display: grid;
    gap: 0;
    max-width: 780px;
    margin-inline: auto;
}

.lpg-step {
    position: relative;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 20px;
    padding-bottom: 30px;
}

.lpg-step:last-child {
    padding-bottom: 0;
}

.lpg-step::before {
    content: '';
    position: absolute;
    inset-inline-start: 28px;
    top: 58px;
    bottom: 2px;
    width: 2px;
    background: linear-gradient(180deg, var(--lpg-accent-tint), rgba(18, 48, 58, 0.06));
}

.lpg-step:last-child::before {
    display: none;
}

.lpg-step-num {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid color-mix(in srgb, var(--lpg-accent) 40%, transparent);
    color: var(--lpg-accent-dark);
    font-size: 21px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--lp-shadow-sm);
    position: relative;
    z-index: 1;
}

.lpg-step h3 {
    font-size: 18px;
    margin: 12px 0 8px;
}

.lpg-step p {
    font-size: 14.5px;
    margin: 0;
}

.lpg-step-meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--lpg-accent-dark);
    background: var(--lpg-accent-tint);
    border-radius: 999px;
    padding: 4px 12px;
}

@media (max-width: 575.98px) {
    .lpg-step {
        grid-template-columns: 46px minmax(0, 1fr);
        gap: 14px;
    }

    .lpg-step::before {
        inset-inline-start: 22px;
        top: 48px;
    }

    .lpg-step-num {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .lpg-step h3 {
        font-size: 16.5px;
        margin-top: 8px;
    }
}

/* ---------- Callouts, notes, scenarios ---------- */

.lpg-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--lpg-accent-tint);
    border: 1px solid color-mix(in srgb, var(--lpg-accent) 26%, transparent);
    border-radius: var(--lp-radius-md);
    padding: 20px 22px;
    font-size: 15px;
    line-height: 1.9;
}

.lpg-callout i {
    font-size: 23px;
    color: var(--lpg-accent-dark);
    flex-shrink: 0;
    margin-top: 3px;
}

.lpg-callout strong {
    color: var(--lp-ink);
}

.lpg-callout.is-quiet {
    background: var(--lp-surface);
    border-color: var(--lp-card-border);
}

.lpg-callout.is-quiet i {
    color: var(--lp-brand-dark);
}

.lpg-note {
    background: #fff;
    border: 1px solid var(--lp-card-border);
    border-inline-start: 4px solid var(--lpg-accent);
    border-radius: var(--lp-radius-md);
    padding: 22px 24px;
}

.lpg-note h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 16.5px;
    margin-bottom: 12px;
}

.lpg-note h3 i {
    color: var(--lpg-accent-dark);
    font-size: 20px;
}

.lpg-note p {
    font-size: 14.5px;
    margin: 0;
}

.lpg-note p + p {
    margin-top: 10px;
}

.lpg-scenario {
    background: linear-gradient(150deg, var(--lp-navy) 0%, #0d242c 100%);
    color: rgba(255, 255, 255, 0.82);
    border-radius: var(--lp-radius-lg);
    padding: 38px 34px;
}

.lpg-scenario-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 18px;
}

.lpg-scenario h3 {
    color: #fff;
    font-size: 21px;
    margin-bottom: 14px;
}

.lpg-scenario p {
    font-size: 15px;
    margin: 0 0 16px;
}

.lpg-scenario-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.lpg-scenario-metrics div {
    text-align: center;
}

.lpg-scenario-metrics b {
    display: block;
    color: #fff;
    font-size: 24px;
    font-weight: 900;
}

.lpg-scenario-metrics span {
    font-size: 13px;
}

@media (max-width: 575.98px) {
    .lpg-scenario {
        padding: 28px 22px;
    }

    .lpg-scenario-metrics {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .lpg-scenario-metrics div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        text-align: start;
    }

    .lpg-scenario-metrics b {
        font-size: 20px;
    }
}

/* ---------- Feature rows inside a mock panel ---------- */

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

.lpg-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--lp-surface);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13.5px;
}

.lpg-row-avatar {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--lpg-accent-tint);
    color: var(--lpg-accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
}

.lpg-row-main {
    min-width: 0;
    flex: 1;
}

.lpg-row-name {
    font-weight: 700;
    color: var(--lp-ink);
    margin-bottom: 6px;
}

.lpg-row-track {
    height: 8px;
    border-radius: 999px;
    background: rgba(18, 48, 58, 0.08);
    overflow: hidden;
}

.lpg-row-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--lpg-accent) 0%, var(--lpg-accent-dark) 100%);
}

.lpg-row-pct {
    font-weight: 800;
    color: var(--lpg-accent-dark);
    font-size: 14px;
    flex-shrink: 0;
}

/* ---------- Comparison table ---------- */

.lpg-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius-lg);
    background: #fff;
}

.lpg-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    font-size: 14.5px;
}

.lpg-table th,
.lpg-table td {
    padding: 15px 18px;
    text-align: start;
    border-bottom: 1px solid var(--lp-card-border);
}

.lpg-table thead th {
    background: var(--lp-surface);
    color: var(--lp-ink);
    font-weight: 800;
    font-size: 14px;
}

.lpg-table thead th:last-child {
    background: var(--lpg-accent-tint);
    color: var(--lpg-accent-dark);
}

.lpg-table tbody tr:last-child th,
.lpg-table tbody tr:last-child td {
    border-bottom: 0;
}

.lpg-table tbody th {
    font-weight: 700;
    color: var(--lp-ink);
}

.lpg-table td i {
    font-size: 18px;
    vertical-align: -3px;
    margin-inline-end: 6px;
}

.lpg-table .is-no i { color: #b1523e; }
.lpg-table .is-yes i { color: #1f8a56; }
.lpg-table td:last-child { background: color-mix(in srgb, var(--lpg-accent) 5%, #fff); }

/* ---------- Pricing teaser ---------- */

.lpg-price {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 30px;
    background: linear-gradient(140deg, #ffffff 0%, var(--lpg-accent-tint) 220%);
    border: 1px solid color-mix(in srgb, var(--lpg-accent) 26%, transparent);
    border-radius: var(--lp-radius-lg);
    padding: 34px 32px;
    box-shadow: var(--lp-shadow-sm);
}

.lpg-price h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.lpg-price p {
    font-size: 15px;
    margin: 0;
}

.lpg-price-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .lpg-price {
        grid-template-columns: 1fr;
        padding: 26px 22px;
        gap: 22px;
    }

    .lpg-price-actions .lp-btn {
        width: 100%;
    }
}

/* ---------- Related pages ---------- */

.lpg-related {
    background: var(--lp-surface);
}

.lpg-related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 991.98px) {
    .lpg-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575.98px) {
    .lpg-related-grid { grid-template-columns: 1fr; }
}

.lpg-related-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    height: 100%;
    background: #fff;
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius-md);
    padding: 20px 20px;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.lpg-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-md);
    border-color: rgba(58, 142, 157, 0.35);
}

.lpg-related-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: var(--lp-brand-tint);
    color: var(--lp-brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    flex-shrink: 0;
}

.lpg-related-card h3 {
    font-size: 15.5px;
    margin-bottom: 6px;
    color: var(--lp-ink);
}

.lpg-related-card p {
    font-size: 13.5px;
    color: var(--lp-muted);
    margin: 0;
    line-height: 1.8;
}

/* ---------- Final CTA ---------- */

.lpg-cta {
    position: relative;
    text-align: center;
    padding-block: 82px;
    color: #fff;
    background:
        radial-gradient(620px 320px at 12% 0%, rgba(255, 255, 255, 0.16), transparent 62%),
        linear-gradient(135deg, var(--lpg-accent) 0%, var(--lpg-accent-dark) 100%);
}

.lpg-cta h2 {
    color: #fff;
    font-size: clamp(25px, 3.4vw, 37px);
    font-weight: 900;
    margin-bottom: 14px;
}

.lpg-cta p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 16.5px;
    max-width: 580px;
    margin: 0 auto 30px;
}

.lpg-cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.78);
}

.lpg-cta .lp-btn-light {
    color: var(--lpg-accent-dark);
}

@media (max-width: 575.98px) {
    .lpg-cta {
        padding-block: 56px;
    }

    .lpg-cta .lp-btn {
        width: 100%;
    }
}

/* ---------- Hub page (/elections) ---------- */

.lpg-hub-group + .lpg-hub-group {
    margin-top: 52px;
}

.lpg-hub-group-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 22px;
}

.lpg-hub-group-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lp-card-border);
}

.lpg-hub-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--lp-card-border);
    border-radius: var(--lp-radius-lg);
    padding: 28px 24px;
    text-decoration: none;
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.lpg-hub-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-md);
    border-color: rgba(58, 142, 157, 0.35);
}

.lpg-hub-card h3 {
    font-size: 17.5px;
    margin-bottom: 10px;
}

.lpg-hub-card p {
    font-size: 14.5px;
    color: var(--lp-body);
    margin: 0 0 18px;
}

.lpg-hub-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-brand-dark);
}

.lpg-hub-card:hover .lpg-hub-more i {
    transform: translateX(-4px);
}

.lpg-hub-more i {
    transition: transform 0.25s ease;
}

/* ---------- Utilities ---------- */

.lpg-center { text-align: center; }
.lpg-mt-32 { margin-top: 32px; }
.lpg-mt-48 { margin-top: 48px; }
.lpg-mb-24 { margin-bottom: 24px; }
.lpg-lead { font-size: 16.5px; line-height: 2; }
.lpg-muted { color: var(--lp-muted); }
