:root {
    --ink: #17211f;
    --muted: #62716d;
    --deep: #103b38;
    --teal: #147a73;
    --mint: #dff5ee;
    --amber: #f5b84b;
    --coral: #e96f52;
    --blue: #396d9f;
    --paper: #f7f4ee;
    --white: #ffffff;
    --line: rgba(23, 33, 31, .12);
    --shadow: 0 24px 70px rgba(16, 59, 56, .16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--paper);
    overflow-x: hidden;
}

.container,
.row,
[class*="col-"] {
    min-width: 0;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.site-nav {
    background: rgba(247, 244, 238, .9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 33, 31, .08);
}

.navbar-brand {
    font-weight: 800;
    letter-spacing: 0;
    color: var(--deep);
}

.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--deep);
    font-weight: 900;
}

.brand-mark.light {
    background: var(--mint);
    color: var(--deep);
}

.nav-link {
    color: rgba(23, 33, 31, .72);
    font-weight: 650;
}

.nav-link:hover,
.nav-link.active {
    color: var(--deep);
}

.btn {
    border-radius: 8px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    white-space: nowrap;
}

.btn-primary {
    --bs-btn-bg: var(--teal);
    --bs-btn-border-color: var(--teal);
    --bs-btn-hover-bg: #0f625d;
    --bs-btn-hover-border-color: #0f625d;
    --bs-btn-active-bg: #0c534f;
    --bs-btn-active-border-color: #0c534f;
    box-shadow: 0 16px 34px rgba(20, 122, 115, .22);
}

.btn-outline-light {
    --bs-btn-color: var(--white);
    --bs-btn-border-color: rgba(255, 255, 255, .64);
    --bs-btn-hover-color: var(--deep);
    --bs-btn-hover-bg: var(--white);
    --bs-btn-hover-border-color: var(--white);
}

.nav-cta {
    padding: .7rem 1rem;
}

.hero-section, .sub-hero {
    min-height: 760px;
    position: relative;
    color: var(--white);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 150px 0 100px;
    background: var(--deep);
}

.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 35, 34, .94) 0%, rgba(16, 59, 56, .76) 48%, rgba(16, 59, 56, .38) 100%),
        url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.form-hero {
    background:
        linear-gradient(90deg, rgba(11, 45, 43, .94), rgba(22, 70, 66, .74)),
        url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.blog-hero {
    min-height: 540px;
    background:
        linear-gradient(90deg, rgba(13, 40, 49, .93), rgba(57, 109, 159, .72)),
        url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.hero-content,
.sub-hero .container {
    position: relative;
    z-index: 1;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    color: var(--amber);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 1rem;
}

.eyebrow.dark {
    color: var(--coral);
}

.display-title {
    font-size: clamp(2.4rem, 5.7vw, 5.55rem);
    line-height: .98;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 1.35rem;
}

.lead-text {
    font-size: clamp(1.05rem, 2vw, 1.28rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, .82);
    max-width: 760px;
}

.body-lg {
    font-size: 1.08rem;
    line-height: 1.75;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-top: 2rem;
}

.proof-strip {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    overflow: hidden;
    max-width: 680px;
}

.proof-strip div {
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, .16);
}

.proof-strip div:last-child {
    border-right: 0;
}

.proof-strip strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1.1;
}

.proof-strip span {
    display: block;
    color: rgba(255, 255, 255, .72);
    font-size: .88rem;
    margin-top: .35rem;
}

.insight-panel,
.saving-board {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(24px);
    border-radius: 8px;
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.panel-top,
.saving-board-head,
.live-row,
.saving-list div,
.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.panel-top,
.saving-board-head {
    color: rgba(255, 255, 255, .78);
    margin-bottom: 1.1rem;
}

.panel-top i,
.saving-board-head i {
    color: var(--amber);
    font-size: 1.5rem;
}

.meter-card {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 1rem;
    align-items: center;
    background: #ffffff1f;
    color: var(--ink);
    border-radius: 8px;
    padding: 1rem;
}

.meter-ring {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: conic-gradient(var(--amber) 0 87%, #e8ede7 87% 100%);
    position: relative;
    isolation: isolate;
}

.meter-ring::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 50%;
    background: var(--white);
    z-index: -1;
}

.meter-ring span {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--deep);
}

.meter-card h2 {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: .45rem;
    color: #f2b758;
}

.meter-card p {
    color: #dbdbdb;
    margin: 0;
}

.live-row {
    padding: 1rem 0;
    color: rgba(255, 255, 255, .78);
}

.live-row strong {
    color: var(--white);
    font-size: 1.15rem;
}

.mini-chart {
    height: 126px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .65rem;
    align-items: end;
    padding: 1rem;
    background: rgba(0, 0, 0, .16);
    border-radius: 8px;
}

.mini-chart div {
    height: 100%;
    min-width: 0;
    display: grid;
    grid-template-rows: 1fr auto;
    gap: .45rem;
    align-items: end;
}

.mini-chart span {
    display: block;
    width: 100%;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--amber), var(--coral));
    min-height: 28px;

}

.section-pad {
    padding: 92px 0;
}

.soft-section {
    background: #eef7f1;
}

.trust-band {
    background: var(--white);
}

.trust-item,
.step-card,
.scenario,
.review-card,
.stat-tile,
.result-card,
.form-shell,
.support-panel,
.legal-card,
.blog-card,
.blog-detail,
.blog-mini {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(16, 59, 56, .08);
}

.trust-item {
    padding: 1.5rem;
    min-height: 100%;
}

.trust-item,
.step-card,
.scenario,
.stat-tile {
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background-color .22s ease;
}

.trust-item:hover,
.trust-item:focus-within,
.step-card:hover,
.step-card:focus-within,
.scenario:hover,
.scenario:focus-within,
.stat-tile:hover,
.stat-tile:focus-within {
    transform: translateY(-4px);
    border-color: rgba(20, 122, 115, .26);
    background: linear-gradient(180deg, #ffffff 0%, #f7fcfa 100%);
    box-shadow: 0 24px 58px rgba(16, 59, 56, .13);
}

.trust-item i,
.scenario i,
.step-card i,
.stat-tile i,
.support-item i {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--deep);
    background: var(--mint);
    font-size: 1.35rem;
}

.trust-item h2,
.scenario h3,
.step-card h3 {
    font-size: 1.1rem;
    font-weight: 900;
    margin: 1rem 0 .55rem;
}

.trust-item p,
.scenario p,
.step-card p,
.review-card p,
.result-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.65;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 2.4rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1.04;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 1rem;
}

.image-stack {
    position: relative;
}

.image-stack img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.floating-note {
    position: absolute;
    right: 24px;
    bottom: 24px;
    background: var(--white);
    color: var(--ink);
    border-radius: 8px;
    padding: 1rem 1.15rem;
    max-width: 260px;
    box-shadow: var(--shadow);
}

.floating-note strong,
.floating-note span {
    display: block;
}

.floating-note span {
    color: var(--muted);
    margin-top: .35rem;
}

.check-grid {
    display: grid;
    gap: .8rem;
    margin-top: 1.5rem;
}

.check-grid span {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    color: var(--ink);
    font-weight: 700;
}

.check-grid i {
    color: var(--teal);
}

.step-card {
    min-height: 100%;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
}

.step-card > span {
    display: block;
    color: rgba(23, 33, 31, .14);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: .9rem;
}

.dark-feature {
    min-height: 100%;
    border-radius: 8px;
    padding: 2rem;
    color: var(--white);
    background:
        linear-gradient(145deg, rgba(16, 59, 56, .96), rgba(20, 122, 115, .9)),
        url("https://images.unsplash.com/photo-1460353581641-37baddab0fa2?auto=format&fit=crop&w=1000&q=80") center/cover;
}

.dark-feature h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1rem;
}

.dark-feature p {
    color: rgba(255, 255, 255, .78);
    line-height: 1.75;
    margin-bottom: 1.4rem;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.scenario {
    padding: 1.35rem;
    min-height: 230px;
}

.testimonial-section {
    background: #fcfbf8;
}

.review-card {
    padding: 1rem;
    min-height: 100%;
}

.review-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stars {
    color: var(--amber);
    font-size: .95rem;
    margin-bottom: .7rem;
    letter-spacing: .06em;
}

.review-card strong {
    display: block;
    margin-top: 1rem;
    color: var(--deep);
}

.faq-section {
    background: var(--white);
}

.accordion-item {
    border: 1px solid var(--line);
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: .8rem;
}

.accordion-button {
    font-weight: 850;
    letter-spacing: 0;
    color: var(--ink);
}

.accordion-button:not(.collapsed) {
    color: var(--deep);
    background: var(--mint);
    box-shadow: none;
}

.accordion-body {
    color: var(--muted);
    line-height: 1.7;
}

.cta-band {
    padding: 72px 0;
    background: var(--deep);
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    color: var(--white);
}

.cta-inner h2 {
    margin: 0;
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 3rem);
}

.saving-board {
    color: var(--white);
}

.saving-board-head strong {
    display: block;
    font-size: 1.35rem;
}

.saving-list {
    display: grid;
    gap: .75rem;
}

.saving-list div {
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    padding: .9rem 1rem;
}

.saving-list span {
    color: rgba(255, 255, 255, .8);
}

.saving-list strong {
    font-size: 1.25rem;
    color: var(--amber);
}

.pulse-note {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1rem;
    color: rgba(255, 255, 255, .76);
    font-size: .92rem;
}

.pulse-note span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7df0a6;
    box-shadow: 0 0 0 0 rgba(125, 240, 166, .65);
    animation: pulse 1.8s infinite;
}

.stat-tile {
    padding: 1.45rem;
    display: grid;
    gap: .6rem;
    min-height: 100%;
}

.stat-tile strong {
    font-size: 2.2rem;
    line-height: 1;
    font-weight: 900;
    color: var(--deep);
}

.stat-tile span {
    color: var(--muted);
}

.form-shell {
    padding: clamp(1.2rem, 3vw, 2rem);
}

.form-head h2 {
    font-weight: 900;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.form-head p {
    color: var(--muted);
    line-height: 1.7;
}

.lead-form .form-label {
    font-weight: 800;
    color: var(--ink);
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 8px;
    border: 1px solid rgba(23, 33, 31, .16);
    background-color: #fbfaf6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 .25rem rgba(20, 122, 115, .14);
}

.household-selector {
    display: grid;
    gap: .42rem;
    margin: 0;
}

.household-selector sup {
    top: -0.2em;
    left: -5px;
    font-size: 10px;
}

.household-selector legend {
    float: none;
    width: auto;
    margin-bottom: 0;
    font-size: .95rem;
    line-height: 1.2;
}

.household-options {
    display: inline-flex;
    width: fit-content;
    max-width: 100%;
    padding: .55rem .82rem;
    border: 1px solid rgba(23, 33, 31, .14);
    border-radius: 16px;
    background: #ffffff;
    gap: .62rem;
    margin-top: -7px;
}

.household-option {
    position: relative;
    display: inline-flex;
    cursor: pointer;
    margin: 0;
}

.household-option input {
    display: none !important;
}

.household-icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    min-height: 2rem;
    padding: 0;
    border-radius: 8px;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
}

.household-option:focus-within .household-icons, .household-option:hover .household-icons svg {
    color: #979797 !important;
}

.household-option.is-active:focus-within .household-icons, .household-option.is-active:hover .household-icons svg {
    color: unset !important;
}

.household-option.is-selected .household-icons {
    transform: translateY(-1px);
}

.household-person {
    position: relative;
    display: inline-flex;
    color: #d6d6d6;
    line-height: 1;
}

.household-option.is-active .household-person {
    color: #217972;
}

.household-person svg {
    display: block;
    width: 13px;
    height: 30px;
    fill: currentColor;
}

.household-plus {
    position: absolute;
    right: -.5rem;
    top: -.22rem;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 900;
}

.household-usage {
    display: flex;
    color: var(--deep);
    font-size: .88rem;
    margin-top: -4px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.household-usage span {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    white-space: nowrap;
}

.household-usage i {
    color: #8f9692;
    font-size: 1.1rem;
}

.household-usage strong {
    color: var(--ink);
    font-weight: 900;
}

.consent-box {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: .75rem;
    align-items: start;
    padding: 1rem;
    border: 1px solid rgba(23, 33, 31, .14);
    border-radius: 8px;
    background: #fbfaf6;
    color: var(--muted);
    line-height: 1.55;
}

.consent-box input {
    width: 20px;
    height: 20px;
    margin-top: .15rem;
    accent-color: var(--teal);
}

.consent-box a {
    color: var(--teal);
    font-weight: 800;
}

.submit-btn {
    width: 100%;
    min-height: 56px;
}

.custom-alert {
    border-radius: 8px;
}

.support-panel {
    padding: 1.5rem;
    position: sticky;
    top: 104px;
}

.support-panel h2 {
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.support-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: .85rem;
    padding: 1.3rem 0;
    border-bottom: 1px solid var(--line);
}

.support-item strong,
.support-item span {
    display: block;
}

.support-item span {
    color: var(--muted);
    margin-top: .2rem;
    line-height: 1.55;
}

.privacy-mini {
    margin-top: 1rem;
    border-radius: 8px;
    background: #f4ead8;
    padding: 1rem;
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: .75rem;
}

.privacy-mini i {
    color: var(--coral);
}

.privacy-mini p {
    margin: 0;
    color: #665344;
    line-height: 1.55;
}

.result-card {
    padding: 1.5rem;
    min-height: 100%;
}

.result-name {
    color: var(--muted);
    font-weight: 750;
}

.result-card strong {
    display: block;
    color: var(--deep);
    font-size: 3rem;
    line-height: 1;
    font-weight: 900;
    margin: .85rem 0;
}

.legal-hero {
    padding: 150px 0 70px;
    background: #eef7f1;
}

.legal-hero h1 {
    font-size: clamp(2.4rem, 5vw, 4.8rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 1rem;
}

.legal-hero p {
    color: var(--muted);
    max-width: 820px;
    line-height: 1.7;
    font-size: 1.1rem;
}

.legal-card {
    padding: clamp(1.3rem, 4vw, 3rem);
    max-width: 920px;
    margin: 0 auto;
}

.legal-card h2 {
    font-size: 1.25rem;
    font-weight: 900;
    margin: 1.8rem 0 .6rem;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p {
    color: var(--muted);
    line-height: 1.75;
}

.legal-card a {
    color: var(--teal);
    font-weight: 800;
}

.blog-mini {
    padding: 1rem;
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    align-items: center;
    color: var(--ink);
}

.blog-mini i {
    color: var(--blue);
    font-size: 1.55rem;
}

.blog-loading {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    color: var(--muted);
    font-weight: 800;
}

.loader-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 1.4s infinite;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.blog-card {
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.blog-card img {
    height: 260px;
    width: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.25rem;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    color: var(--muted);
    font-size: .88rem;
    margin-bottom: .8rem;
}

.blog-card h2 {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.18;
}

.blog-card p {
    color: var(--muted);
    line-height: 1.65;
}

.blog-card a {
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
}

.blog-detail {
    overflow: hidden;
    max-width: 940px;
    margin: 0 auto;
}

.blog-detail img {
    height: 430px;
    width: 100%;
    object-fit: cover;
}

.blog-detail-body {
    padding: clamp(1.3rem, 4vw, 3rem);
}

.blog-detail h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 1rem;
}

.blog-detail p {
    color: var(--muted);
    font-size: 1.07rem;
    line-height: 1.8;
}

.blog-back {
    display: inline-flex;
    gap: .45rem;
    align-items: center;
    color: var(--teal);
    font-weight: 900;
    text-decoration: none;
    margin-bottom: 1rem;
}

.admin-toolbar {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.admin-toolbar strong {
    font-size: 1.7rem;
    color: var(--deep);
}

.admin-toolbar span {
    color: var(--muted);
    margin-left: .35rem;
}

.admin-table-wrap {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 50px rgba(16, 59, 56, .08);
}

.admin-table {
    margin: 0;
}

.admin-table th {
    color: var(--deep);
    font-size: .86rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.admin-body {
    background: #edf2ef;
}

.admin-login-screen {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:linear-gradient(
129deg, rgb(0 125 115), rgb(33 122 115));
}

.admin-login-card {
    width: min(100%, 460px);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: clamp(1.25rem, 4vw, 2rem);
    box-shadow: var(--shadow);
}

.admin-login-brand,
.admin-sidebar-brand {
    display: flex;
    align-items: center;
    gap: .85rem;
}

.admin-login-brand {
    margin-bottom: 2rem;
}

.admin-login-brand strong,
.admin-sidebar-brand strong {
    display: block;
    color: var(--deep);
    font-weight: 900;
}

.admin-login-brand span,
.admin-sidebar-brand span {
    display: block;
    color: var(--muted);
    font-size: .92rem;
}

.admin-login-card h1 {
    font-size: 2.35rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: .75rem;
}

.admin-login-card p {
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 1.35rem;
}

.admin-login-note {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: .55rem;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

.admin-login-note i {
    color: var(--teal);
}

.admin-panel {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px 1fr;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 1.25rem;
    background: #122320;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.admin-sidebar-brand {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.admin-sidebar-brand strong {
    color: var(--white);
}

.admin-sidebar-brand span {
    color: rgba(255, 255, 255, .58);
}

.admin-sidebar nav {
    display: grid;
    gap: .35rem;
    margin-top: 1.5rem;
}

.admin-sidebar nav a,
.admin-logout {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    padding: .85rem .9rem;
    border-radius: 8px;
    font-weight: 800;
}

.admin-sidebar nav a:hover,
.admin-sidebar nav a.active,
.admin-logout:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--white);
}

.admin-logout {
    margin-top: auto;
}

.admin-main {
    padding: clamp(1rem, 3vw, 2rem);
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-topbar span {
    color: var(--muted);
    font-weight: 800;
}

.admin-topbar h1 {
    margin: .25rem 0 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1;
}

.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-stat-card {
    position: relative;
    min-height: 150px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1.15rem;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(16, 59, 56, .08);
}

.admin-stat-card span {
    color: var(--muted);
    font-weight: 800;
}

.admin-stat-card strong {
    display: block;
    margin-top: .55rem;
    font-size: 2.35rem;
    line-height: 1;
    color: var(--deep);
    font-weight: 900;
}

.admin-stat-card i {
    position: absolute;
    right: 1rem;
    bottom: .8rem;
    font-size: 3rem;
    color: rgba(20, 122, 115, .16);
}

.admin-section {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 18px 50px rgba(16, 59, 56, .08);
}

.admin-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.admin-section-head h2 {
    font-size: 1.55rem;
    font-weight: 900;
    margin-bottom: .25rem;
}

.admin-section-head p {
    color: var(--muted);
    margin: 0;
}

.admin-filter {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) 180px auto;
    gap: .6rem;
    min-width: min(100%, 680px);
}

.admin-table-wrap {
    box-shadow: none;
}

.admin-table td span {
    display: block;
    color: var(--muted);
    font-size: .92rem;
    margin-top: .15rem;
}

.status-form .form-select {
    min-height: 42px;
    min-width: 132px;
}

.admin-count-pill {
    border-radius: 8px;
    background: #ffffff;
    color: var(--deep);
    padding: .65rem .9rem;
    font-weight: 900;
}

.site-footer {
    background: #122320;
    color: var(--white);
    padding: 64px 0 28px;
}

.footer-copy {
    color: rgba(255, 255, 255, .68);
    line-height: 1.7;
}

.footer-contact {
    display: grid;
    gap: .6rem;
}

.footer-contact a,
.site-footer .col-6 a,
.site-footer .col-lg-3 a {
    color: rgba(255, 255, 255, .76);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .45rem;
}

.site-footer a:hover {
    color: var(--white);
}

.site-footer h3 {
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--amber);
    margin-bottom: 1rem;
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, .55);
    font-size: .9rem;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(20, 122, 115, .45);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(20, 122, 115, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(20, 122, 115, 0);
    }
}


@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        padding: 1rem 0;
    }

    .hero-section,
    .sub-hero {
        min-height: auto;
        padding: 112px 0 64px;
    }

    .proof-strip {
        grid-template-columns: 1fr;
    }

    .proof-strip div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .proof-strip div:last-child {
        border-bottom: 0;
    }

    .meter-card {
        grid-template-columns: 1fr;
    }

    .scenario-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .image-stack img {
        height: 420px;
    }

    .support-panel {
        position: static;
    }

    .cta-inner,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-panel {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
        height: auto;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .admin-section-head,
    .admin-topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-filter {
        grid-template-columns: 1fr;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .insight-panel,
    .saving-board,
    .proof-strip,
    .mini-chart,
    .hero-actions,
    .panel-top,
    .saving-board-head,
    .live-row,
    .saving-list div {
        min-width: 0;
        max-width: 100%;
    }

    .display-title {
        font-size: 2.4rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .section-pad {
        padding: 64px 0;
    }

    .floating-note {
        position: static;
        margin-top: .75rem;
        max-width: none;
    }

    .image-stack img,
    .blog-detail img,
    .blog-card img {
        height: 280px;
    }

    .admin-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }

    .admin-stat-grid {
        grid-template-columns: 1fr;
    }
}

.blog-list-heading {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

.modern-blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
    align-items: stretch;
}

.modern-blog-card {
    position: relative;
    min-height: 100%;
    border: 1px solid rgba(23, 33, 31, .1);
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
    box-shadow: 0 20px 55px rgba(16, 59, 56, .1);
}

.modern-blog-card::after {
    content: "";
    position: absolute;
    inset: auto 1.1rem 0 1.1rem;
    height: 4px;
    border-radius: 8px 8px 0 0;
    background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
    opacity: .85;
}

.modern-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(16, 59, 56, .16);
}

.blog-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
}

.blog-card-image img {
    height: 230px;
    transition: transform .45s ease;
}

.modern-blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: .45rem .7rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    color: var(--deep);
    font-size: .8rem;
    font-weight: 900;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}

.modern-blog-card .blog-card-body {
    padding: 1.25rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 285px;
}

.modern-blog-card .blog-meta {
    gap: .75rem;
}

.modern-blog-card .blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}

.modern-blog-card h2 a {
    color: var(--ink);
    text-decoration: none;
}

.modern-blog-card h2 a:hover {
    color: var(--teal);
}

.blog-read-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    width: fit-content;
    padding-top: .65rem;
}

.featured-blog-card {
    grid-column: span 2;
    display: grid;
    grid-template-columns: minmax(280px, .95fr) 1fr;
}

.featured-blog-card .blog-card-image img {
    height: 100%;
    min-height: 360px;
}

.featured-blog-card .blog-card-body {
    min-height: 360px;
    padding: 1.6rem;
}

.featured-blog-card h2 {
    font-size: clamp(1.7rem, 3vw, 2.35rem);
}
.step-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "number icon"
        "title title"
        "text text";
    align-items: start;
    column-gap: 1rem;
}

.step-card > span {
    grid-area: number;
    margin-bottom: .4rem;
}

.step-card > i {
    grid-area: icon;
    margin-top: .45rem;
}

.step-card > h3 {
    grid-area: title;
}

.step-card > p {
    grid-area: text;
}

.admin-page-body {
    background: #edf2ef;
}

.admin-data-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 18px 50px rgba(16, 59, 56, .08);
}

.admin-data-card .dt-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: .75rem;
}

.admin-data-card .dt-button,
.admin-data-card button.dt-button {
    border: 0 !important;
    border-radius: 8px !important;
    background: var(--teal) !important;
    color: var(--white) !important;
    font-weight: 800 !important;
    padding: .55rem .85rem !important;
    box-shadow: none !important;
}

.admin-data-card .dataTables_filter input,
.admin-data-card .dataTables_length select {
    border: 1px solid rgba(23, 33, 31, .16);
    border-radius: 8px;
    min-height: 38px;
    padding: .35rem .65rem;
    background: #fbfaf6;
}

.admin-data-card table.dataTable thead th {
    color: var(--deep);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.admin-data-card .dataTables_info,
.admin-data-card .dataTables_paginate {
    padding-top: 1rem;
}
.admin-stat-grid-compact {
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    max-width: 980px;
}

@media (max-width: 680px) {
    .admin-stat-grid-compact {
        grid-template-columns: 1fr;
        max-width: none;
    }
}

.phone-verify .input-group .btn {
    border-radius: 0 8px 8px 0;
    font-weight: 800;
    white-space: nowrap;
}

.phone-verify .form-control[readonly] {
    background: #eef7f1;
    color: var(--deep);
}

.verify-code-row {
    display: none;
    grid-template-columns: 1fr auto;
    gap: .65rem;
    margin-top: .75rem;
}

.verify-code-row.is-visible {
    display: grid;
}

.phone-verify-status {
    margin-top: .55rem;
    font-size: .88rem;
    color: var(--muted);
    line-height: 1.45;
}

.phone-verify-status[data-type="success"] {
    color: #147a47;
    font-weight: 800;
}

.phone-verify-status[data-type="error"] {
    color: #b42318;
    font-weight: 800;
}

@media (max-width: 520px) {
    .phone-verify .input-group,
    .verify-code-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .phone-verify .input-group .form-control,
    .phone-verify .input-group .btn {
        width: 100%;
        border-radius: 8px !important;
    }
}
.verify-code-row:not(.is-visible) {
    display: none !important;
}

.js-send-code {
    background: var(--teal) !important;
    border-color: var(--teal) !important;
    color: var(--white) !important;
}

.js-send-code:hover,
.js-send-code:focus {
    background: #0f625d !important;
    border-color: #0f625d !important;
    color: var(--white) !important;
}

.blog-card,
.blog-detail,
.blog-card-body,
.blog-detail-body {
    min-width: 0;
}

.blog-card h2,
.blog-card h2 a,
.blog-detail h2 {
    overflow-wrap: anywhere;
    word-break: normal;
}

@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        margin-top: .85rem;
        padding: .35rem 0 .2rem;
        border-top: 1px solid rgba(16, 59, 56, .12);
        
    }

    .site-nav .navbar-nav {
        gap: 0 !important;
        align-items: stretch !important;
    }

    .site-nav .nav-item:not(:last-child) {
        border-bottom: 1px solid rgba(16, 59, 56, .1);
    }

    .site-nav .nav-link {
        padding: .85rem .15rem;
        display: flex;
        align-items: center;
    }

    .site-nav .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: .9rem;
    }

    .modern-blog-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
    }

    .featured-blog-card {
        grid-column: auto !important;
        display: block;
    }

    .featured-blog-card .blog-card-image img,
    .featured-blog-card .blog-card-body,
    .modern-blog-card .blog-card-body {
        min-height: 0;
    }
}

@media (max-width: 575.98px) {
    .blog-card-image img,
    .blog-card img {
        height: 205px;
    }

    .blog-detail img {
        height: 220px;
    }

    .blog-card-body,
    .modern-blog-card .blog-card-body,
    .featured-blog-card .blog-card-body {
        padding: 1rem;
    }

    .blog-card h2,
    .featured-blog-card h2 {
        font-size: 1.2rem;
        line-height: 1.22;
    }

    .blog-detail h2 {
        font-size: 1.75rem;
        line-height: 1.12;
    }

    .blog-detail-body {
        padding: 1rem;
    }

    .submit-btn {
        min-height: 52px;
        font-size: .95rem;
        line-height: 1.2;
        padding-left: .85rem;
        padding-right: .85rem;
    }

    .submit-btn span {
        white-space: normal;
    }
}
.legal-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 430px;
    display: flex;
    align-items: end;
    padding: 150px 0 76px;
    background: var(--deep);
    color: var(--white);
}

.legal-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: var(--legal-hero-image) center/cover no-repeat;
    transform: scale(1.02);
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(8, 31, 30, .94) 0%, rgba(16, 59, 56, .78) 46%, rgba(16, 59, 56, .36) 100%);
}

.legal-hero .eyebrow,
.legal-hero h1,
.legal-hero p {
    color: var(--white);
}

.legal-hero p {
    color: rgba(255, 255, 255, .86);
}

.legal-hero-afmelden {
    --legal-hero-image: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=80");
}

.legal-hero-privacy {
    --legal-hero-image: url("https://images.unsplash.com/photo-1563986768609-322da13575f3?auto=format&fit=crop&w=1800&q=80");
}

.legal-hero-voorwaarden {
    --legal-hero-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?auto=format&fit=crop&w=1800&q=80");
}

@media (max-width: 520px) {
    .phone-verify .js-send-code {
        margin-top: .75rem;
    }

    .legal-hero {
        min-height: 360px;
        padding: 126px 0 56px;
    }
}
.admin-main {
    max-width: none;
    width: 100%;
}

.admin-stat-grid-compact {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-section {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin-top: 1.4rem;
    box-shadow: none;
}

.admin-section-head {
    margin-bottom: .9rem;
    padding: 0 .15rem;
}

.admin-data-card {
    background: var(--white);
    border: 1px solid rgba(23, 33, 31, .1);
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 18px 48px rgba(16, 59, 56, .08);
    overflow: hidden;
}

.admin-data-card .table-responsive,
.admin-table-wrap {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow-x: auto;
}

.admin-data-card .dt-layout-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin: 0 0 1rem;
    flex-wrap: wrap;
}

.admin-data-card .dt-layout-row:last-child {
    margin: 1rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(23, 33, 31, .08);
}

.admin-data-card .dt-layout-start,
.admin-data-card .dt-layout-end {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.admin-data-card .dt-buttons {
    margin: 0;
}

.admin-data-card .dt-search,
.admin-data-card .dt-length {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    color: var(--muted);
    font-weight: 800;
}

.admin-data-card .dt-search input,
.admin-data-card .dt-length select,
.admin-data-card .dataTables_filter input,
.admin-data-card .dataTables_length select {
    border: 1px solid rgba(23, 33, 31, .14);
    border-radius: 8px;
    min-height: 42px;
    padding: .45rem .7rem;
    background: #fbfaf6;
    box-shadow: none;
}

.admin-data-card .dt-search input {
    min-width: 260px;
}

.admin-table {
    border-collapse: separate;
    border-spacing: 0;
    min-width: 960px;
}

#unsubscribesTable.admin-table {
    min-width: 520px;
}

.admin-table thead th,
.admin-data-card table.dataTable thead th {
    background: #f3f7f4;
    border-bottom: 1px solid rgba(23, 33, 31, .1) !important;
    color: var(--deep);
    font-size: .78rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: .9rem .85rem;
    white-space: nowrap;
}

.admin-table tbody td {
    border-bottom: 1px solid rgba(23, 33, 31, .07);
    padding: .9rem .85rem;
    vertical-align: middle;
    color: var(--ink);
    white-space: nowrap;
}

.admin-table tbody tr:hover td {
    background: #fbfaf6;
}

.admin-data-card .dt-info,
.admin-data-card .dataTables_info {
    color: var(--muted);
    font-weight: 700;
    padding: 0;
}

.admin-data-card .dt-paging,
.admin-data-card .dataTables_paginate {
    padding: 0;
}

.admin-data-card .page-link {
    border-radius: 8px;
    color: var(--deep);
    border-color: rgba(23, 33, 31, .12);
    margin: 0 .12rem;
}

.admin-data-card .active > .page-link,
.admin-data-card .page-link.active {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

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

    .admin-data-card {
        padding: 1rem;
    }

    .admin-data-card .dt-search input {
        min-width: min(100%, 240px);
    }
}

@media (max-width: 680px) {
    .admin-stat-grid-compact {
        grid-template-columns: 1fr;
    }

    .admin-data-card .dt-layout-row,
    .admin-data-card .dt-layout-start,
    .admin-data-card .dt-layout-end,
    .admin-data-card .dt-search,
    .admin-data-card .dt-length {
        align-items: stretch;
        width: 100%;
    }

    .admin-data-card .dt-search input,
    .admin-data-card .dt-length select,
    .admin-data-card .dt-buttons,
    .admin-data-card .dt-button,
    .admin-data-card button.dt-button {
        width: 100%;
    }
}
.hero-section .display-title,
.form-hero .display-title {
    font-size: clamp(2.25rem, 4.6vw, 3.75rem);
    line-height: 1.04;
    max-width: 980px;
}

@media (max-width: 575.98px) {
    .hero-section .display-title,
    .form-hero .display-title {
        font-size: 2.65rem;
        line-height: 1.08;
    }
}
.panel-checklist {
    margin-top: 1rem;
    display: grid;
    gap: .65rem;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
}

.panel-checklist > span {
    color: rgba(255, 255, 255, .72);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.panel-checklist div {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
}

.panel-checklist i {
    color: var(--amber);
    font-size: 1.05rem;
    margin-top: .08rem;
}

.panel-checklist p {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-weight: 700;
    line-height: 1.35;
}
.mini-chart small {
    color: rgba(255, 255, 255, .68);
    font-size: .72rem;
    font-weight: 900;
    text-align: center;
    line-height: 1;
}
.form-stats-section {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    padding-bottom: 74px;
}

.form-stats-section .stat-tile {
    border-color: rgba(20, 122, 115, .14);
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
    box-shadow: 0 16px 44px rgba(16, 59, 56, .07);
}


.form-check-section {
    position: relative;
    background:
        linear-gradient(135deg, rgba(223, 245, 238, .85), rgba(247, 244, 238, .96)),
        radial-gradient(circle at 14% 8%, rgba(245, 184, 75, .16), transparent 30%);
    border-top: 1px solid rgba(16, 59, 56, .08);
    border-bottom: 1px solid rgba(16, 59, 56, .08);
}

.form-check-section .form-shell,
.form-check-section .support-panel {
    box-shadow: 0 24px 70px rgba(16, 59, 56, .1);
    border-color: rgba(16, 59, 56, .1);
}

.form-check-section .support-panel {
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.form-results-section {
    background: linear-gradient(180deg, #fffaf1 0%, #ffffff 100%);
    position: relative;
}

.form-results-section .section-heading {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.form-results-section .result-card {
    position: relative;
    overflow: hidden;
    border-color: rgba(245, 184, 75, .22);
    box-shadow: 0 18px 48px rgba(16, 59, 56, .07);
}

.form-results-section .result-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--amber), var(--coral));
}

.form-results-section .result-card strong {
    color: var(--teal);
}

@media (max-width: 991.98px) {
    .form-stats-section,
    .form-check-section,
    .form-results-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }
}
.js-form-errors[hidden] {
    display: none !important;
}

.js-form-errors ul {
    margin-top: .45rem;
    padding-left: 1.15rem;
}
.lead-form .form-control.is-invalid,
.lead-form .form-select.is-invalid,
.phone-verify.field-invalid .form-control,
.household-selector.field-invalid .household-options,
.consent-box.field-invalid {
    border-color: #dc3545 !important;
    background-color: #fff5f5 !important;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .12) !important;
}

.consent-box.field-invalid {
    outline: 1px solid rgba(220, 53, 69, .55);
}

.support-followup {
    margin-top: 1.4rem;
    padding: 1rem;
    border-radius: 8px;
    background: #eef7f1;
    border: 1px solid rgba(20, 122, 115, .14);
    display: grid;
    gap: .75rem;
}

.support-followup h3 {
    margin: 0 0 .15rem;
    font-size: 1rem;
    font-weight: 900;
    color: var(--deep);
}

.support-followup div {
    display: grid;
    grid-template-columns: 30px 1fr;
    gap: .7rem;
    align-items: start;
}

.support-followup span {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--teal);
    color: var(--white);
    font-weight: 900;
    font-size: .86rem;
}

.support-followup p {
    margin: 0;
    color: var(--muted);
    line-height: 1.5;
}

.support-proof {
    margin-top: 1.4rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.support-proof div {
    border: 1px solid rgba(23, 33, 31, .1);
    border-radius: 8px;
    padding: 1.15rem;
    background: #ffffff;
}

.support-proof strong,
.support-proof span {
    display: block;
}

.support-proof strong {
    color: var(--deep);
    font-weight: 900;
}

.support-proof span {
    margin-top: .18rem;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.35;
}

@media (max-width: 420px) {
    .support-proof {
        grid-template-columns: 1fr;
    }
}
.site-logo-link {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    text-decoration: none;
}

.site-logo {
    width: 300px;
    height: 50px;
    object-fit: contain;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    text-decoration: none;
}

.footer-logo {
    width: 300px;
    height: auto;
    max-height: 54px;
    object-fit: contain;
}

@media (max-width: 575.98px) {
    .site-logo {
        width: 270px;
        height: 43px;
    }

    .footer-logo {
        width: 270px;
    }
}
.site-footer .footer-logo,
.admin-sidebar .footer-logo,
.dark-feature .site-logo {
    filter: brightness(0) invert(1);
}

.stat-value-with-info {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    position: relative;
}

.stat-info {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1rem;
    line-height: 1;
    cursor: help;
}

.stat-info i {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 1rem;
}

.stat-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + .65rem);
    width: min(280px, 78vw);
    padding: .75rem .85rem;
    border-radius: 8px;
    background: var(--deep);
    color: var(--white);
    font-size: .78rem;
    line-height: 1.55;
    font-weight: 650;
    text-align: left;
    box-shadow: 0 18px 42px rgba(16, 59, 56, .22);
    transform: translateX(-50%) translateY(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    z-index: 20;
}

.stat-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: 10px;
    height: 10px;
    background: var(--deep);
    transform: translateX(-50%) rotate(45deg);
}

.stat-info:hover .stat-tooltip, .stat-info:focus-within .stat-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    color: white;
}

@media (max-width: 575.98px) {
    .stat-tooltip {
        left: auto;
        right: 0;
        transform: translateY(4px);
    }

    .stat-tooltip::after {
        left: auto;
        right: .65rem;
        transform: rotate(45deg);
    }

    .stat-info:hover .stat-tooltip,
    .stat-info:focus-within .stat-tooltip {
        transform: translateY(0);
    }
}
.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1080;
}

.cookie-banner-inner {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(16, 59, 56, .96);
    color: var(--white);
    box-shadow: 0 24px 70px rgba(16, 59, 56, .24);
}

.cookie-banner strong {
    display: block;
    margin-bottom: .25rem;
    font-size: .98rem;
    font-weight: 900;
}

.cookie-banner p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .9rem;
    line-height: 1.55;
}

.cookie-banner a {
    color: var(--amber);
    font-weight: 800;
    text-decoration: none;
}

.cookie-banner a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: .65rem;
    flex-shrink: 0;
}

.cookie-actions .btn {
    min-height: 42px;
    padding: .55rem .9rem;
}

@media (max-width: 767.98px) {
    .cookie-banner {
        left: .75rem;
        right: .75rem;
        bottom: .75rem;
    }

    .cookie-banner-inner {
        align-items: stretch;
        flex-direction: column;
        gap: .9rem;
        padding: .95rem;
    }

    .cookie-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
    }

    .cookie-actions .btn {
        width: 100%;
    }
}
