:root {
    --ink: #12343b;
    --ink-deep: #0a272e;
    --ink-soft: #31515a;
    --paper: #f7f8f4;
    --paper-warm: #f2efe7;
    --white: #ffffff;
    --line: #d9e1dd;
    --line-dark: rgba(255, 255, 255, .16);
    --teal: #3e8f82;
    --teal-soft: #d9ebe5;
    --mint: #78bca9;
    --orange: #f6a93b;
    --orange-soft: #fff0d7;
    --coral: #e8734d;
    --blue: #4d77a8;
    --blue-soft: #e3eaf4;
    --purple: #715f91;
    --purple-soft: #ece7f3;
    --shadow: 0 24px 60px rgba(18, 52, 59, .10);
    --shadow-small: 0 12px 28px rgba(18, 52, 59, .08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --container: 1240px;
    --header-height: 82px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--paper);
    color: var(--ink-deep);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.dialog-open {
    overflow: hidden;
}

img,
svg {
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3,
strong {
    letter-spacing: -.025em;
}

h1 {
    margin-bottom: 24px;
    font-size: clamp(2.6rem, 5.5vw, 5.2rem);
    line-height: .98;
    letter-spacing: -.065em;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 3.4vw, 3.35rem);
    line-height: 1.04;
    letter-spacing: -.055em;
}

h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    line-height: 1.2;
}

p {
    color: var(--ink-soft);
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    color: var(--teal);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .13em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 22px;
    height: 2px;
    background: currentColor;
    content: "";
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 12px 26px rgba(18, 52, 59, .22);
}

.button--primary:hover {
    background: var(--ink-deep);
    box-shadow: 0 16px 32px rgba(18, 52, 59, .26);
}

.button--secondary {
    background: var(--orange);
    color: var(--ink-deep);
    box-shadow: 0 12px 26px rgba(246, 169, 59, .22);
}

.button--secondary:hover {
    background: #ffb94f;
}

.button--ghost {
    border-color: var(--line);
    background: rgba(255, 255, 255, .55);
    color: var(--ink);
}

.button--ghost:hover {
    border-color: var(--teal);
    background: var(--white);
}

.button--light {
    margin-top: 34px;
    background: var(--white);
    color: var(--ink-deep);
}

.button--full {
    width: 100%;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-weight: 800;
}

.text-link span {
    font-size: 1.2em;
    transition: transform .2s ease;
}

.text-link:hover span {
    transform: translateX(4px);
}

.access-chip {
    display: inline-flex;
    width: max-content;
    align-items: center;
    min-height: 28px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .045em;
    line-height: 1;
    text-transform: uppercase;
}

.access-chip--free {
    background: var(--teal-soft);
    color: #1c6258;
}

.access-chip--account {
    background: var(--blue-soft);
    color: #345d8c;
}

.access-chip--paid {
    background: var(--orange-soft);
    color: #9a6010;
}

.access-chip--professional {
    background: var(--purple-soft);
    color: #5d4b7d;
}

.access-chip--planned {
    background: #ecefed;
    color: #68736f;
}

.top-note {
    position: relative;
    z-index: 50;
    background: var(--ink-deep);
    color: rgba(255, 255, 255, .76);
    font-size: .76rem;
    letter-spacing: .02em;
}

.top-note__inner {
    display: flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.top-note__inner > span:first-child {
    color: var(--orange);
    font-weight: 800;
}

.top-note__separator {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .36);
}

.site-header {
    position: sticky;
    z-index: 40;
    top: 0;
    border-bottom: 1px solid transparent;
    background: rgba(247, 248, 244, .88);
    backdrop-filter: blur(18px);
    transition: box-shadow .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
    border-color: rgba(18, 52, 59, .08);
    box-shadow: 0 9px 25px rgba(18, 52, 59, .06);
}

.header-inner {
    display: flex;
    min-height: var(--header-height);
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.brand img {
    flex: 0 0 auto;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(18, 52, 59, .15);
}

.brand__text {
    display: flex;
    align-items: baseline;
    color: var(--ink-deep);
    font-size: 1.05rem;
    letter-spacing: -.035em;
}

.brand__text strong {
    font-weight: 850;
}

.brand__text small {
    color: var(--teal);
    font-size: inherit;
    font-weight: 850;
}

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

.main-nav > a {
    position: relative;
    padding: 12px 13px;
    border-radius: 999px;
    color: #49636a;
    font-size: .88rem;
    font-weight: 750;
    transition: background .2s ease, color .2s ease;
}

.main-nav > a:hover,
.main-nav > a.is-active {
    background: rgba(18, 52, 59, .07);
    color: var(--ink-deep);
}

.main-nav .nav-account {
    margin-left: 6px;
    padding-inline: 16px;
    border: 1px solid rgba(18, 52, 59, .14);
    background: var(--white);
    box-shadow: 0 6px 16px rgba(18, 52, 59, .05);
}

.nav-account__dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 5px;
    border-radius: 50%;
    background: var(--orange);
}

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    width: 19px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
}

.home-hero {
    padding: 92px 0 88px;
    background:
        radial-gradient(circle at 88% 12%, rgba(246, 169, 59, .18), transparent 27%),
        radial-gradient(circle at 10% 88%, rgba(120, 188, 169, .15), transparent 32%),
        var(--paper);
}

.home-hero::after {
    position: absolute;
    right: -80px;
    bottom: -150px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(18, 52, 59, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(18, 52, 59, .025), 0 0 0 100px rgba(18, 52, 59, .016);
    content: "";
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    align-items: center;
    gap: clamp(48px, 8vw, 104px);
}

.hero-copy h1 {
    max-width: 800px;
}

.hero-copy > p {
    max-width: 690px;
    margin-bottom: 32px;
    font-size: 1.12rem;
    line-height: 1.7;
}

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

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.hero-trust div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.hero-trust strong {
    color: var(--ink-deep);
    font-size: .84rem;
}

.hero-trust span {
    color: #6d7d7a;
    font-size: .75rem;
    line-height: 1.4;
}

.hero-console {
    position: relative;
    padding: 30px;
    border: 1px solid rgba(18, 52, 59, .12);
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
}

.hero-console::before {
    position: absolute;
    z-index: -1;
    top: 24px;
    left: 24px;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    background: var(--teal-soft);
    content: "";
}

.console-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.console-top > div {
    display: flex;
    flex-direction: column;
}

.console-top strong {
    font-size: 1.25rem;
}

.console-kicker {
    color: #77908b;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.status-pill {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--orange-soft);
    color: #9c6419;
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.console-score {
    display: grid;
    grid-template-columns: 118px 1fr;
    align-items: center;
    gap: 24px;
    padding: 28px 0;
}

.score-ring {
    position: relative;
    display: grid;
    width: 112px;
    height: 112px;
    place-content: center;
    border-radius: 50%;
    background: conic-gradient(var(--teal) calc(var(--score) * 1%), #e5ebe8 0);
    text-align: center;
}

.score-ring::before {
    position: absolute;
    inset: 9px;
    border-radius: inherit;
    background: var(--white);
    content: "";
}

.score-ring span,
.score-ring small {
    position: relative;
    z-index: 1;
}

.score-ring span {
    font-size: 2rem;
    font-weight: 850;
    line-height: 1;
}

.score-ring small {
    color: #7d8f8a;
    font-size: .68rem;
}

.console-score > div:last-child > span {
    color: #778985;
    font-size: .76rem;
    font-weight: 750;
}

.console-score > div:last-child > strong {
    display: block;
    margin: 2px 0 4px;
    font-size: 1.45rem;
}

.console-score p {
    margin: 0;
    font-size: .8rem;
    line-height: 1.45;
}

.console-bars {
    display: grid;
    gap: 15px;
    padding: 22px;
    border-radius: 18px;
    background: #f5f7f4;
}

.console-bars > div {
    display: grid;
    grid-template-columns: 1fr 110px 38px;
    align-items: center;
    gap: 10px;
    font-size: .72rem;
}

.console-bars span {
    color: #60736f;
    font-weight: 700;
}

.console-bars i {
    position: relative;
    display: block;
    height: 6px;
    overflow: hidden;
    border-radius: 99px;
    background: #dfe6e3;
}

.console-bars i::after {
    display: block;
    width: var(--bar);
    height: 100%;
    border-radius: inherit;
    background: var(--teal);
    content: "";
}

.console-bars b {
    color: var(--ink);
    text-align: right;
}

.console-next {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 18px;
    padding: 16px 18px;
    border-left: 3px solid var(--orange);
    background: var(--orange-soft);
}

.console-next span {
    color: #9d702d;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.console-next strong {
    font-size: .82rem;
    line-height: 1.4;
}

.section {
    padding: 104px 0;
}

.section--start {
    padding-top: 92px;
    background: var(--white);
}

.section--soft {
    background: var(--paper-warm);
}

.section--ink {
    background: var(--ink-deep);
    color: var(--white);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 48px;
}

.section-heading--split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.05fr) minmax(300px, .7fr);
    align-items: end;
    gap: 80px;
}

.section-heading h2 {
    margin-bottom: 0;
}

.section-heading > p,
.section-heading--split > p {
    margin-bottom: 0;
    font-size: 1rem;
}

.section-heading--light h2,
.section-heading--light p {
    color: var(--white);
}

.section-heading--light p {
    color: rgba(255, 255, 255, .66);
}

.section-heading--light .eyebrow {
    color: var(--orange);
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.entry-card {
    position: relative;
    display: flex;
    min-height: 520px;
    flex-direction: column;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.entry-card:hover {
    transform: translateY(-7px);
    border-color: rgba(62, 143, 130, .35);
    box-shadow: var(--shadow-small);
}

.entry-card::after {
    position: absolute;
    top: -100px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(120, 188, 169, .12);
    content: "";
}

.entry-card--public::after {
    background: rgba(77, 119, 168, .12);
}

.entry-card--lighting::after {
    background: rgba(246, 169, 59, .15);
}

.entry-number {
    position: absolute;
    z-index: 1;
    top: 26px;
    right: 26px;
    color: rgba(18, 52, 59, .38);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.entry-icon {
    position: relative;
    z-index: 1;
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 60px;
    place-items: center;
    border: 1px solid rgba(18, 52, 59, .12);
    border-radius: 20px;
    background: var(--white);
    color: var(--teal);
    font-size: 2rem;
    box-shadow: 0 12px 24px rgba(18, 52, 59, .08);
}

.entry-card--public .entry-icon {
    color: var(--blue);
}

.entry-card--lighting .entry-icon {
    color: #bd7720;
}

.entry-card .access-chip {
    margin-bottom: 18px;
}

.entry-card h3 {
    font-size: 2rem;
    letter-spacing: -.05em;
}

.entry-card > p {
    min-height: 102px;
    margin-bottom: 22px;
}

.compact-list {
    display: grid;
    gap: 9px;
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
}

.compact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #536d72;
    font-size: .84rem;
    font-weight: 650;
}

.compact-list li::before {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    content: "";
}

.entry-card .text-link {
    margin-top: auto;
}

.access-preview {
    position: relative;
    overflow: hidden;
}

.access-preview::after {
    position: absolute;
    right: -170px;
    bottom: -200px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    box-shadow: 0 0 0 60px rgba(255, 255, 255, .02), 0 0 0 120px rgba(255, 255, 255, .015);
    content: "";
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--line);
}

.access-grid article {
    min-height: 265px;
    padding: 26px;
    background: var(--white);
}

.access-grid--dark {
    position: relative;
    z-index: 1;
    border-color: var(--line-dark);
    background: var(--line-dark);
}

.access-grid--dark article {
    background: rgba(255, 255, 255, .055);
}

.access-grid--dark h3 {
    color: var(--white);
    font-size: 1.45rem;
}

.access-grid--dark p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .62);
    font-size: .88rem;
}

.tier-index {
    display: block;
    margin-bottom: 44px;
    color: rgba(255, 255, 255, .35);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
}

.access-grid--dark .access-chip {
    margin-bottom: 18px;
}

.sources-preview {
    background: var(--white);
}

.source-strip {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.source-strip article {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    padding: 24px 18px;
    border-right: 1px solid var(--line);
    transition: background .2s ease;
}

.source-strip article:last-child {
    border-right: 0;
}

.source-strip article:hover {
    background: var(--paper);
}

.source-strip span {
    color: #9bacaa;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
}

.source-strip strong {
    margin-top: auto;
    font-size: .95rem;
}

.source-strip small {
    margin-top: 5px;
    color: #6e817d;
    font-size: .68rem;
}

.workflow-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 110px;
}

.workflow-grid .section-heading {
    position: sticky;
    top: 130px;
    margin-bottom: 0;
}

.workflow-list {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    counter-reset: steps;
    list-style: none;
}

.workflow-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(18, 52, 59, .12);
}

.workflow-list li:first-child {
    padding-top: 0;
}

.workflow-list li > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 16px;
    background: var(--white);
    color: var(--teal);
    font-size: .72rem;
    font-weight: 850;
    box-shadow: var(--shadow-small);
}

.workflow-list strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1.18rem;
}

.workflow-list p {
    margin: 0;
    font-size: .9rem;
}

.professional-split {
    padding-top: 0;
    background: var(--white);
}

.professional-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.professional-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    padding: 48px;
    border-radius: var(--radius-xl);
}

.professional-card::after {
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    content: "";
}

.professional-card--ogaus {
    background: var(--teal-soft);
}

.professional-card--ogaus::after {
    border: 1px solid rgba(18, 52, 59, .12);
    box-shadow: 0 0 0 40px rgba(18, 52, 59, .035);
}

.professional-card--nova {
    background: var(--orange-soft);
}

.professional-card--nova::after {
    border: 1px solid rgba(246, 169, 59, .26);
    box-shadow: 0 0 0 40px rgba(246, 169, 59, .08);
}

.professional-card h2 {
    max-width: 540px;
    font-size: clamp(2rem, 3vw, 3.1rem);
}

.professional-card p {
    max-width: 570px;
    margin-bottom: 34px;
}

.professional-card .button {
    position: relative;
    z-index: 1;
}

.page-hero {
    position: relative;
    overflow: hidden;
    padding: 84px 0 72px;
    border-bottom: 1px solid var(--line);
    background: var(--paper-warm);
}

.page-hero::after {
    position: absolute;
    top: -200px;
    right: -170px;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(18, 52, 59, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(18, 52, 59, .025), 0 0 0 110px rgba(18, 52, 59, .014);
    content: "";
}

.page-hero--funding {
    background: #fff4df;
}

.page-hero--map {
    background: #e8f0ec;
}

.page-hero--sources {
    background: #edf2f7;
}

.page-hero--access {
    background: #f3ecf5;
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr);
    align-items: end;
    gap: 90px;
}

.page-hero h1 {
    max-width: 900px;
    margin-bottom: 22px;
    font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.page-hero__inner > div:first-child > p {
    max-width: 800px;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.page-hero__badge {
    padding: 22px;
    border: 1px solid rgba(18, 52, 59, .12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .6);
    backdrop-filter: blur(12px);
}

.page-hero__badge p {
    margin: 14px 0 0;
    font-size: .82rem;
    line-height: 1.5;
}

.calculator-section {
    padding: 72px 0 110px;
    background: var(--white);
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .78fr);
    align-items: start;
    gap: 30px;
}

.calculator-form,
.result-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
}

.calculator-form {
    padding: 34px;
}

.calculator-form__header {
    margin-bottom: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.calculator-form__header > span {
    display: block;
    margin-bottom: 7px;
    color: var(--teal);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.calculator-form__header h2 {
    margin-bottom: 8px;
    font-size: 2rem;
}

.calculator-form__header p {
    margin: 0;
    font-size: .85rem;
}

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

.form-grid label,
.login-card label {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 8px;
}

.form-grid label > span,
.login-card label > span {
    color: var(--ink);
    font-size: .78rem;
    font-weight: 800;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.login-card input,
.map-toolbar input {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid #cfd9d5;
    outline: 0;
    border-radius: 11px;
    background: var(--white);
    color: var(--ink-deep);
    box-shadow: 0 1px 0 rgba(18, 52, 59, .03);
    transition: border-color .2s ease, box-shadow .2s ease;
}

.form-grid textarea {
    resize: vertical;
}

.form-grid select {
    padding-right: 42px;
    background-image:
        linear-gradient(45deg, transparent 50%, #617975 50%),
        linear-gradient(135deg, #617975 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 2px),
        calc(100% - 13px) calc(50% - 2px);
    background-repeat: no-repeat;
    background-size: 5px 5px, 5px 5px;
    appearance: none;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.login-card input:focus,
.map-toolbar input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(62, 143, 130, .12);
}

.form-grid small {
    color: #7a8b87;
    font-size: .68rem;
    line-height: 1.4;
}

.form-span-2 {
    grid-column: span 2;
}

.input-unit {
    position: relative;
}

.input-unit input {
    padding-right: 58px;
}

.input-unit em {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    color: #728580;
    font-size: .72rem;
    font-style: normal;
    font-weight: 800;
}

.form-callout {
    margin: 28px 0 22px;
    padding: 18px 20px;
    border-left: 3px solid var(--teal);
    border-radius: 0 12px 12px 0;
    background: var(--teal-soft);
}

.form-callout--funding {
    border-color: var(--orange);
    background: var(--orange-soft);
}

.form-callout strong {
    display: block;
    margin-bottom: 3px;
    font-size: .82rem;
}

.form-callout p {
    margin: 0;
    font-size: .75rem;
    line-height: 1.5;
}

.result-panel {
    position: sticky;
    top: 112px;
    min-height: 620px;
    overflow: hidden;
    background: var(--ink-deep);
    color: var(--white);
    box-shadow: var(--shadow-small);
}

.result-panel::after {
    position: absolute;
    z-index: 0;
    right: -120px;
    bottom: -160px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .014);
    content: "";
}

.result-empty,
.result-content {
    position: relative;
    z-index: 1;
    min-height: 620px;
    padding: 38px;
}

.result-empty {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.result-empty__icon {
    display: grid;
    width: 70px;
    height: 70px;
    margin-bottom: 38px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    color: var(--orange);
    font-size: 2.3rem;
}

.result-empty h2 {
    max-width: 380px;
    margin-bottom: 14px;
    color: var(--white);
    font-size: 2.4rem;
}

.result-empty p {
    max-width: 390px;
    color: rgba(255, 255, 255, .62);
}

.result-empty__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px;
}

.result-empty__list span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 999px;
    color: rgba(255, 255, 255, .66);
    font-size: .68rem;
    font-weight: 750;
}

.result-empty[hidden],
.result-content[hidden] {
    display: none;
}

.result-content {
    display: flex;
    flex-direction: column;
}

.result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.result-head > div > span {
    display: block;
    color: var(--orange);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.result-head h2 {
    margin: 4px 0 0;
    color: var(--white);
    font-size: 1.8rem;
}

.result-status {
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(120, 188, 169, .15);
    color: #a8e0d0;
    font-size: .68rem;
    font-weight: 850;
    text-transform: uppercase;
}

.result-score-block {
    display: grid;
    grid-template-columns: 115px 1fr;
    align-items: center;
    gap: 22px;
    padding: 28px 0;
}

.result-score {
    display: grid;
    width: 110px;
    height: 110px;
    place-items: center;
    border: 8px solid rgba(255, 255, 255, .08);
    border-top-color: var(--orange);
    border-right-color: var(--mint);
    border-radius: 50%;
}

.result-score span {
    font-size: 2rem;
    font-weight: 850;
}

.result-score-copy small {
    color: rgba(255, 255, 255, .5);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.result-score-copy strong {
    display: block;
    margin: 3px 0 5px;
    color: var(--white);
    font-size: 1.35rem;
}

.result-score-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .76rem;
    line-height: 1.45;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.result-metric {
    min-height: 105px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
}

.result-metric span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, .5);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.result-metric strong {
    display: block;
    color: var(--white);
    font-size: 1.15rem;
    line-height: 1.2;
}

.result-metric small {
    color: rgba(255, 255, 255, .48);
    font-size: .64rem;
}

.result-notes {
    display: grid;
    gap: 8px;
    margin-bottom: 22px;
}

.result-note {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 10px;
    color: rgba(255, 255, 255, .7);
    font-size: .72rem;
    line-height: 1.45;
}

.result-note i {
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 7px;
    background: rgba(246, 169, 59, .14);
    color: var(--orange);
    font-size: .65rem;
    font-style: normal;
    font-weight: 850;
}

.result-locked {
    margin-top: auto;
    padding: 18px;
    border: 1px dashed rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
}

.result-locked > span {
    display: block;
    margin-bottom: 8px;
    color: var(--orange);
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.result-locked strong {
    display: block;
    margin-bottom: 7px;
    color: var(--white);
    font-size: .86rem;
}

.result-locked p {
    margin: 0 0 14px;
    color: rgba(255, 255, 255, .55);
    font-size: .68rem;
    line-height: 1.45;
}

.result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.result-actions button,
.result-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: var(--white);
    cursor: pointer;
    font-size: .68rem;
    font-weight: 800;
    text-align: center;
}

.result-actions button:first-child {
    border-color: transparent;
    background: var(--orange);
    color: var(--ink-deep);
}

.product-ladder {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    align-items: start;
    gap: 80px;
}

.product-ladder .section-heading {
    margin: 0;
}

.product-ladder__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.product-ladder__grid article {
    min-height: 260px;
    padding: 24px;
    border: 1px solid rgba(18, 52, 59, .1);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .55);
}

.product-ladder__grid h3 {
    margin-top: 36px;
}

.product-ladder__grid p {
    margin: 0;
    font-size: .82rem;
}

.map-section {
    padding: 34px 0 100px;
    background: var(--white);
}

.map-layout {
    display: grid;
    grid-template-columns: 310px minmax(0, 1fr);
    min-height: 690px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--paper);
    box-shadow: var(--shadow-small);
}

.map-sidebar {
    display: flex;
    flex-direction: column;
    padding: 28px;
    border-right: 1px solid var(--line);
    background: var(--white);
}

.map-sidebar__top .eyebrow {
    margin-bottom: 12px;
}

.map-sidebar__top h2 {
    margin-bottom: 26px;
    font-size: 2rem;
}

.map-filters {
    display: grid;
    gap: 7px;
}

.map-filters button {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid transparent;
    border-radius: 10px;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.map-filters button:hover,
.map-filters button.is-active {
    border-color: var(--line);
    background: var(--paper);
}

.map-filters i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
}

.map-filters button:nth-child(2) i { background: var(--orange); }
.map-filters button:nth-child(3) i { background: var(--blue); }
.map-filters button:nth-child(4) i { background: var(--purple); }
.map-filters button:nth-child(5) i { background: var(--coral); }

.map-filters span {
    font-size: .78rem;
    font-weight: 700;
}

.map-filters b {
    color: #82918e;
    font-size: .7rem;
}

.map-legend {
    display: grid;
    gap: 8px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.map-legend strong {
    margin-bottom: 5px;
    font-size: .72rem;
    text-transform: uppercase;
}

.map-legend span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #6a7c78;
    font-size: .7rem;
}

.map-legend i {
    width: 9px;
    height: 9px;
    border: 2px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px #82918e;
}

.map-legend i.verified { background: var(--teal); }
.map-legend i.aggregate { background: var(--blue); }
.map-legend i.demo { background: var(--orange); }

.map-account-card {
    margin-top: auto;
    padding: 20px;
    border-radius: 15px;
    background: var(--blue-soft);
}

.map-account-card h3 {
    margin-top: 14px;
    font-size: 1rem;
}

.map-account-card p {
    font-size: .72rem;
    line-height: 1.45;
}

.map-account-card a {
    color: #345d8c;
    font-size: .75rem;
    font-weight: 850;
}

.map-canvas {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background: #e7efeb;
}

.map-canvas > img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    min-width: 840px;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.05);
    filter: saturate(.8) contrast(.98);
}

.map-toolbar {
    position: absolute;
    z-index: 8;
    top: 22px;
    left: 22px;
    display: flex;
    width: min(540px, calc(100% - 44px));
    gap: 8px;
}

.map-toolbar label {
    flex: 1;
}

.map-toolbar input {
    min-height: 48px;
    box-shadow: 0 10px 22px rgba(18, 52, 59, .13);
}

.map-toolbar button {
    min-height: 48px;
    padding: 10px 16px;
    border: 0;
    border-radius: 11px;
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font-size: .75rem;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(18, 52, 59, .17);
}

.map-marker {
    position: absolute;
    z-index: 5;
    top: var(--y);
    left: var(--x);
    width: 26px;
    height: 26px;
    padding: 0;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--orange);
    cursor: pointer;
    box-shadow: 0 5px 14px rgba(18, 52, 59, .25);
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
}

.map-marker::after {
    position: absolute;
    inset: -7px;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    opacity: .22;
    content: "";
}

.map-marker:hover,
.map-marker.is-selected {
    z-index: 6;
    transform: translate(-50%, -50%) scale(1.25);
}

.map-marker.is-hidden {
    pointer-events: none;
    opacity: 0;
}

.marker-public { background: var(--blue); }
.marker-funding { background: var(--purple); }
.marker-project { background: var(--coral); }

.map-popup {
    position: absolute;
    z-index: 10;
    right: 24px;
    bottom: 58px;
    width: min(320px, calc(100% - 48px));
    padding: 22px;
    border: 1px solid rgba(18, 52, 59, .1);
    border-radius: 17px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.map-popup[hidden] {
    display: none;
}

.map-popup > button {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #73847f;
    font-size: 1.35rem;
}

.map-popup > span {
    color: var(--teal);
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.map-popup strong {
    display: block;
    margin: 5px 0;
    font-size: 1.1rem;
}

.map-popup p {
    margin-bottom: 14px;
    font-size: .75rem;
    line-height: 1.45;
}

.map-popup a {
    color: var(--ink);
    font-size: .72rem;
    font-weight: 850;
}

.map-disclaimer {
    position: absolute;
    z-index: 4;
    right: 20px;
    bottom: 16px;
    left: 20px;
    padding: 9px 12px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .82);
    color: #60736f;
    font-size: .62rem;
    line-height: 1.35;
    backdrop-filter: blur(8px);
}

.map-method {
    background: var(--paper);
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.method-grid article {
    min-height: 260px;
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.method-grid article > span {
    color: var(--teal);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .1em;
}

.method-grid h3 {
    margin-top: 54px;
}

.method-grid p {
    margin: 0;
    font-size: .8rem;
}

.source-catalog {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.source-card {
    display: flex;
    min-height: 370px;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    transition: transform .22s ease, box-shadow .22s ease;
}

.source-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-small);
}

.source-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.source-symbol {
    display: block;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--teal-soft);
}

.source-card--battery .source-symbol { background: var(--blue-soft); }
.source-card--heat .source-symbol { background: var(--orange-soft); }
.source-card--thermal .source-symbol { background: #f7e4ce; }
.source-card--geo .source-symbol { background: #e8dfd3; }
.source-card--biomass .source-symbol { background: #e2edd9; }
.source-card--wind .source-symbol { background: #e4edf0; }
.source-card--biogas .source-symbol { background: #e8e4ef; }

.source-card h2 {
    margin-top: 70px;
    margin-bottom: 12px;
    font-size: 1.7rem;
}

.source-card > p {
    margin-bottom: 28px;
    font-size: .82rem;
}

.source-card__footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.source-card__footer a,
.source-card__footer > span {
    color: var(--ink);
    font-size: .73rem;
    font-weight: 800;
}

.compare-callout {
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 80px;
}

.compare-callout h2 {
    max-width: 760px;
}

.compare-callout p {
    max-width: 760px;
    margin-bottom: 0;
}

.compare-mock {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.compare-mock span {
    height: 100px;
    border-radius: 12px;
    background: linear-gradient(145deg, #e2e9e5, #f6f8f5);
}

.compare-mock i {
    height: 10px;
    border-radius: 10px;
    background: #d9e2de;
}

.dossier-page {
    position: relative;
    overflow: hidden;
    padding: 76px 0 90px;
    background: var(--ink-deep);
    color: var(--white);
}

.dossier-page::after {
    position: absolute;
    top: -280px;
    right: -200px;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(255, 255, 255, .02), 0 0 0 140px rgba(255, 255, 255, .012);
    content: "";
}

.dossier-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 450px;
    align-items: center;
    gap: 100px;
}

.brand--standalone {
    margin-bottom: 60px;
}

.brand--standalone .brand__text {
    color: var(--white);
}

.dossier-intro h1 {
    max-width: 720px;
    margin-bottom: 24px;
    color: var(--white);
}

.dossier-intro > p {
    max-width: 700px;
    color: rgba(255, 255, 255, .64);
    font-size: 1.02rem;
}

.dossier-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 48px;
}

.dossier-benefits > div {
    min-height: 170px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    background: rgba(255, 255, 255, .045);
}

.dossier-benefits span {
    color: var(--orange);
    font-size: .65rem;
    font-weight: 850;
}

.dossier-benefits strong {
    display: block;
    margin: 32px 0 5px;
    font-size: .85rem;
}

.dossier-benefits p {
    margin: 0;
    color: rgba(255, 255, 255, .5);
    font-size: .68rem;
    line-height: 1.45;
}

.login-card {
    padding: 36px;
    border-radius: var(--radius-xl);
    background: var(--white);
    color: var(--ink-deep);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
}

.login-card h2 {
    margin: 26px 0 10px;
    font-size: 2rem;
}

.login-card > p {
    margin-bottom: 25px;
    font-size: .82rem;
}

.login-card form {
    display: grid;
    gap: 18px;
}

.login-card .button {
    margin-top: 4px;
}

.login-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0;
    color: #80918d;
    font-size: .7rem;
}

.login-divider::before,
.login-divider::after {
    height: 1px;
    flex: 1;
    background: var(--line);
    content: "";
}

.login-card > small {
    display: block;
    margin-top: 18px;
    color: #7e8f8b;
    font-size: .64rem;
    line-height: 1.45;
    text-align: center;
}

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

.dashboard-preview {
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 540px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: var(--shadow-small);
}

.dashboard-preview > aside {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 26px 18px;
    border-right: 1px solid var(--line);
    background: var(--ink-deep);
    color: var(--white);
}

.dashboard-preview > aside > strong {
    margin-bottom: 24px;
    padding-inline: 10px;
}

.dashboard-preview > aside > span {
    padding: 10px;
    border-radius: 9px;
    color: rgba(255, 255, 255, .58);
    font-size: .72rem;
    font-weight: 700;
}

.dashboard-preview > aside > span.is-current {
    background: rgba(255, 255, 255, .09);
    color: var(--white);
}

.dashboard-main {
    padding: 30px;
}

.dashboard-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.dashboard-top > div {
    display: flex;
    flex-direction: column;
}

.dashboard-top small {
    color: #80918d;
}

.dashboard-top strong {
    font-size: 1.25rem;
}

.dashboard-top button {
    padding: 10px 15px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: .72rem;
    font-weight: 800;
}

.dashboard-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.dashboard-metrics article {
    min-height: 135px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--white);
}

.dashboard-metrics small,
.dashboard-metrics span {
    display: block;
    color: #758682;
    font-size: .66rem;
}

.dashboard-metrics strong {
    display: block;
    margin: 13px 0 6px;
    font-size: 2rem;
}

.dashboard-row {
    display: grid;
    gap: 9px;
}

.dashboard-row > div {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--white);
}

.dashboard-icon {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 12px;
    background: var(--teal-soft);
    color: var(--teal);
}

.dashboard-row strong,
.dashboard-row small {
    display: block;
}

.dashboard-row small {
    color: #7b8c88;
    font-size: .67rem;
}

.dashboard-row b {
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--teal-soft);
    color: #287064;
    font-size: .62rem;
}

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

.access-table-wrap {
    overflow: hidden;
}

.access-table-head {
    display: grid;
    grid-template-columns: 1fr .65fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 38px;
}

.access-table-head h2 {
    margin-bottom: 0;
}

.access-table-head > p {
    margin-bottom: 0;
}

.access-table {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.access-table__row {
    display: grid;
    grid-template-columns: 1.45fr repeat(4, 1fr);
    background: var(--white);
}

.access-table__row:nth-child(even) {
    background: var(--paper);
}

.access-table__row > div {
    display: flex;
    min-height: 66px;
    align-items: center;
    padding: 14px 16px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    color: #536c70;
    font-size: .72rem;
}

.access-table__row > div:first-child {
    color: var(--ink-deep);
    font-weight: 750;
}

.access-table__row > div:last-child {
    border-right: 0;
}

.access-table__row:last-child > div {
    border-bottom: 0;
}

.access-table__header {
    background: var(--ink-deep);
}

.access-table__header > div,
.access-table__header > div:first-child {
    min-height: 82px;
    border-color: rgba(255, 255, 255, .1);
    color: var(--white);
    font-weight: 800;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.product-grid article {
    display: flex;
    min-height: 310px;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .7);
}

.product-grid article > span {
    color: var(--teal);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-grid h3 {
    margin-top: 62px;
    font-size: 1.55rem;
}

.product-grid p {
    font-size: .82rem;
}

.product-grid small {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #758682;
    font-size: .68rem;
}

.not-found {
    display: grid;
    min-height: 70vh;
    place-items: center;
    text-align: center;
}

.not-found .container {
    max-width: 720px;
}

.not-found p {
    margin-bottom: 30px;
}

.site-footer {
    padding: 74px 0 24px;
    background: var(--ink-deep);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, .65fr);
    gap: 54px;
}

.brand--footer .brand__text {
    color: var(--white);
}

.footer-brand p {
    max-width: 390px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .5);
    font-size: .78rem;
}

.footer-grid > div:not(.footer-brand) {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
}

.footer-grid h3 {
    margin-bottom: 12px;
    color: var(--white);
    font-size: .75rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-grid a,
.footer-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .56);
    cursor: pointer;
    font-size: .73rem;
    text-align: left;
}

.footer-grid a:hover,
.footer-link:hover {
    color: var(--white);
}

.footer-note {
    margin-top: 8px;
    color: rgba(255, 255, 255, .34);
    font-size: .62rem;
    line-height: 1.45;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 62px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .36);
    font-size: .65rem;
}

.contact-dialog {
    width: min(680px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 40px 100px rgba(7, 32, 38, .38);
}

.contact-dialog::backdrop {
    background: rgba(7, 32, 38, .64);
    backdrop-filter: blur(7px);
}

.contact-dialog__shell {
    position: relative;
    padding: 38px;
}

.contact-dialog h2 {
    margin-bottom: 10px;
    font-size: 2.2rem;
}

.contact-dialog__shell > p {
    max-width: 570px;
    margin-bottom: 26px;
    font-size: .85rem;
}

.dialog-close {
    position: absolute;
    top: 15px;
    right: 15px;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: var(--paper);
    cursor: pointer;
    font-size: 1.35rem;
}

.form-grid--dialog {
    margin-bottom: 18px;
}

.consent-row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    margin-bottom: 20px;
    color: #627773;
    font-size: .7rem;
    line-height: 1.45;
}

.consent-row input {
    width: 17px;
    height: 17px;
    margin: 2px 0 0;
    accent-color: var(--teal);
}

.dialog-disclaimer {
    margin: 14px 0 0 !important;
    color: #82908d !important;
    font-size: .63rem !important;
    text-align: center;
}

.toast {
    position: fixed;
    z-index: 100;
    right: 22px;
    bottom: 22px;
    max-width: 360px;
    padding: 14px 18px;
    border-radius: 13px;
    background: var(--ink-deep);
    color: var(--white);
    box-shadow: var(--shadow);
    font-size: .75rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .2s ease, transform .2s ease;
}

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


/* reports and editorial section */
.page-hero--reports {
    background: #fff1d8;
}

.page-hero--articles {
    background: #e7f0ed;
}

.report-preview {
    background: var(--paper-warm);
}

.report-listing {
    display: grid;
    gap: 18px;
}

.report-listing--home {
    grid-template-columns: repeat(3, 1fr);
}

.report-listing--full {
    grid-template-columns: repeat(2, 1fr);
}

.report-card {
    display: flex;
    min-height: 470px;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.report-card--featured {
    border-color: transparent;
    background: var(--ink-deep);
    color: var(--white);
}

.report-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 42px;
}

.report-card__top span {
    color: var(--teal);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.report-card__top strong {
    padding: 8px 12px;
    border-radius: 999px;
    background: var(--orange-soft);
    color: #91590d;
    font-size: .82rem;
    white-space: nowrap;
}

.report-card--featured .report-card__top span {
    color: var(--orange);
}

.report-card--featured .report-card__top strong {
    background: var(--orange);
    color: var(--ink-deep);
}

.report-card h3 {
    max-width: 440px;
    margin-bottom: 14px;
    font-size: 1.55rem;
}

.report-card--featured h3 {
    color: var(--white);
}

.report-card p {
    margin-bottom: 22px;
    font-size: .84rem;
}

.report-card--featured p {
    color: rgba(255, 255, 255, .64);
}

.report-card ul {
    display: grid;
    gap: 8px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.report-card li {
    position: relative;
    padding-left: 20px;
    color: #536c72;
    font-size: .76rem;
}

.report-card li::before {
    position: absolute;
    top: .55em;
    left: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    content: "";
}

.report-card--featured li {
    color: rgba(255, 255, 255, .7);
}

.report-card--featured li::before {
    background: var(--orange);
}

.report-card > .button {
    margin-top: auto;
}

.report-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.report-card--featured .report-card__footer {
    border-color: rgba(255, 255, 255, .12);
}

.report-card__footer small {
    color: #778986;
    font-size: .66rem;
}

.report-card--featured .report-card__footer small {
    color: rgba(255, 255, 255, .52);
}

.report-method .method-grid article {
    border-color: rgba(255, 255, 255, .13);
    background: rgba(255, 255, 255, .055);
}

.report-method .method-grid article > span {
    color: var(--orange);
}

.report-method .method-grid h3 {
    color: var(--white);
}

.report-method .method-grid p {
    color: rgba(255, 255, 255, .6);
}

.result-report {
    margin-top: auto;
    padding: 19px;
    border: 1px solid rgba(246, 169, 59, .44);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(246, 169, 59, .13), rgba(255, 255, 255, .035));
}

.result-report__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 9px;
}

.result-report__top span {
    color: var(--orange);
    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .075em;
    text-transform: uppercase;
}

.result-report__top strong {
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--ink-deep);
    font-size: .72rem;
    white-space: nowrap;
}

.result-report h3 {
    margin-bottom: 7px;
    color: var(--white);
    font-size: .96rem;
}

.result-report > p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .61);
    font-size: .68rem;
    line-height: 1.45;
}

.result-report ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.result-report li {
    padding: 5px 8px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 999px;
    color: rgba(255, 255, 255, .65);
    font-size: .58rem;
}

.result-report > small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .38);
    font-size: .57rem;
    line-height: 1.4;
}

.report-dialog {
    width: min(760px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 40px 100px rgba(7, 32, 38, .38);
}

.report-dialog::backdrop {
    background: rgba(7, 32, 38, .68);
    backdrop-filter: blur(7px);
}

.report-dialog__shell {
    position: relative;
    padding: 38px;
}

.report-dialog__top {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 30px;
    margin-bottom: 24px;
    padding-right: 44px;
}

.report-dialog h2 {
    margin-bottom: 8px;
    font-size: 2.15rem;
}

.report-dialog__top p {
    max-width: 520px;
    margin: 0;
    font-size: .82rem;
}

.report-dialog__price {
    display: flex;
    min-width: 120px;
    align-items: flex-end;
    flex-direction: column;
    padding: 13px 15px;
    border-radius: 14px;
    background: var(--orange-soft);
}

.report-dialog__price span {
    color: #98703b;
    font-size: .62rem;
    font-weight: 800;
    text-transform: uppercase;
}

.report-dialog__price strong {
    color: var(--ink-deep);
    font-size: 1.2rem;
}

.report-dialog__included {
    margin-bottom: 24px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--paper);
}

.report-dialog__included > span {
    display: block;
    margin-bottom: 10px;
    color: var(--teal);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.report-dialog__included ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.report-dialog__included li {
    position: relative;
    padding-left: 16px;
    color: #536c72;
    font-size: .72rem;
}

.report-dialog__included li::before {
    position: absolute;
    top: .58em;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    content: "";
}

.articles-preview {
    background: var(--white);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.article-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.article-card__visual,
.featured-article__visual,
.article-hero__visual {
    position: relative;
    display: block;
    overflow: hidden;
    background: var(--teal-soft);
}

.article-card__visual {
    height: 210px;
}

.article-card__visual::before,
.featured-article__visual::before,
.article-hero__visual::before {
    position: absolute;
    right: -55px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(18, 52, 59, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(18, 52, 59, .045), 0 0 0 68px rgba(18, 52, 59, .025);
    content: "";
}

.article-card__visual > span,
.article-hero__visual > span {
    position: absolute;
    top: 24px;
    left: 24px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 18px;
    background: rgba(255, 255, 255, .76);
    color: var(--ink-deep);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .08em;
    backdrop-filter: blur(10px);
}

.article-card__visual i,
.featured-article__visual i,
.article-hero__visual i {
    position: absolute;
    display: block;
    border-radius: 999px;
    background: rgba(18, 52, 59, .17);
    transform: rotate(-24deg);
}

.article-card__visual i:nth-of-type(1),
.featured-article__visual i:nth-of-type(1),
.article-hero__visual i:nth-of-type(1) {
    right: 18%;
    bottom: 27%;
    width: 48%;
    height: 17px;
}

.article-card__visual i:nth-of-type(2),
.featured-article__visual i:nth-of-type(2),
.article-hero__visual i:nth-of-type(2) {
    right: 10%;
    bottom: 43%;
    width: 34%;
    height: 11px;
}

.article-card__visual i:nth-of-type(3),
.featured-article__visual i:nth-of-type(3),
.article-hero__visual i:nth-of-type(3) {
    right: 33%;
    bottom: 14%;
    width: 28%;
    height: 9px;
}

.article-card--storage .article-card__visual,
.featured-article--storage .featured-article__visual,
.article-hero--storage .article-hero__visual {
    background: var(--blue-soft);
}

.article-card--public .article-card__visual,
.featured-article--public .featured-article__visual,
.article-hero--public .article-hero__visual {
    background: #e9e5f0;
}

.article-card--lighting .article-card__visual,
.featured-article--lighting .featured-article__visual,
.article-hero--lighting .article-hero__visual {
    background: var(--orange-soft);
}

.article-card--funding .article-card__visual,
.featured-article--funding .featured-article__visual,
.article-hero--funding .article-hero__visual {
    background: #f3e8d9;
}

.article-card--geothermal .article-card__visual,
.featured-article--geothermal .featured-article__visual,
.article-hero--geothermal .article-hero__visual {
    background: #e6ece4;
}

.article-card__body {
    padding: 26px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #71837f;
    font-size: .65rem;
}

.article-meta span {
    color: var(--teal);
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.article-meta time::before,
.article-meta small::before {
    margin-right: 9px;
    color: #b1bdb9;
    content: "•";
}

.article-card h3 {
    min-height: 72px;
    font-size: 1.3rem;
}

.article-card h3 a:hover,
.featured-article h2 a:hover {
    color: var(--teal);
}

.article-card p {
    min-height: 98px;
    margin-bottom: 22px;
    font-size: .8rem;
}

.featured-article-section {
    padding-bottom: 50px;
    background: var(--white);
}

.featured-article {
    display: grid;
    min-height: 480px;
    grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--paper-warm);
    box-shadow: var(--shadow-small);
}

.featured-article__visual {
    min-height: 480px;
    background: var(--teal-soft);
}

.featured-article__visual > span {
    position: absolute;
    top: 32px;
    left: 32px;
    z-index: 2;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .8);
    color: var(--ink-deep);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.featured-article__content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 58px;
}

.featured-article h2 {
    font-size: clamp(2.1rem, 3.8vw, 3.5rem);
}

.featured-article__content > p {
    margin-bottom: 28px;
    font-size: .95rem;
}

.article-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 44px;
}

.article-toolbar h2 {
    margin: 0;
}

.article-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 7px;
}

.article-categories span {
    padding: 7px 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--white);
    color: #617570;
    font-size: .65rem;
    font-weight: 750;
}

.editorial-note {
    background: var(--white);
}

.editorial-note__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 50px;
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    background: var(--paper);
}

.editorial-note h2 {
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.editorial-note p {
    max-width: 760px;
    margin: 0;
}

.article-hero {
    padding: 76px 0;
    background: var(--paper-warm);
}

.article-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, .65fr);
    align-items: center;
    gap: 78px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 42px;
    color: #748681;
    font-size: .68rem;
}

.breadcrumb a:hover {
    color: var(--teal);
}

.breadcrumb em {
    color: var(--ink-soft);
    font-style: normal;
}

.article-hero h1 {
    max-width: 930px;
    margin-bottom: 24px;
    font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.article-hero__copy > p {
    max-width: 820px;
    margin: 0;
    font-size: 1.08rem;
}

.article-hero__visual {
    min-height: 420px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.article-hero__visual > span {
    width: 74px;
    height: 74px;
    font-size: 1rem;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
    gap: 80px;
    padding-top: 84px;
    padding-bottom: 110px;
}

.article-body {
    max-width: 780px;
}

.article-body p,
.article-body li {
    color: #36545b;
    font-size: 1rem;
    line-height: 1.82;
}

.article-body .article-lead {
    margin-bottom: 44px;
    color: var(--ink-deep);
    font-size: 1.23rem;
    line-height: 1.65;
}

.article-body h2 {
    margin: 52px 0 18px;
    font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.article-body ul {
    display: grid;
    gap: 8px;
    margin: 22px 0 34px;
    padding-left: 22px;
}

.article-callout {
    margin: 38px 0;
    padding: 28px;
    border-left: 4px solid var(--orange);
    border-radius: 0 18px 18px 0;
    background: var(--orange-soft);
}

.article-callout strong {
    display: block;
    margin-bottom: 6px;
    color: var(--ink-deep);
}

.article-callout p {
    margin: 0;
    font-size: .9rem;
}

.article-end {
    margin-top: 62px;
    padding: 36px;
    border-radius: var(--radius-lg);
    background: var(--ink-deep);
    color: var(--white);
}

.article-end > span {
    color: var(--orange);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.article-end h2 {
    margin: 10px 0 12px;
    color: var(--white);
}

.article-end p {
    color: rgba(255, 255, 255, .62);
}

.article-end > div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-end .button--primary {
    background: var(--orange);
    color: var(--ink-deep);
}

.article-end .button--ghost {
    border-color: rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: var(--white);
}

.article-sidebar {
    position: sticky;
    top: 116px;
    display: grid;
    gap: 14px;
}

.article-sidebar__card,
.article-sidebar__latest {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.article-sidebar__card h3 {
    font-size: 1.25rem;
}

.article-sidebar__card p {
    font-size: .76rem;
}

.article-sidebar__card a,
.article-sidebar__card button {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--teal);
    cursor: pointer;
    font-size: .73rem;
    font-weight: 850;
}

.article-sidebar__card--dark {
    border-color: transparent;
    background: var(--ink-deep);
    color: var(--white);
}

.article-sidebar__card--dark .eyebrow {
    color: var(--orange);
}

.article-sidebar__card--dark h3 {
    color: var(--white);
}

.article-sidebar__card--dark p {
    color: rgba(255, 255, 255, .6);
}

.article-sidebar__card--dark button {
    color: var(--orange);
}

.article-sidebar__latest {
    display: grid;
    gap: 0;
}

.article-sidebar__latest > strong {
    margin-bottom: 8px;
    font-size: .82rem;
}

.article-sidebar__latest a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink-deep);
    font-size: .72rem;
    font-weight: 750;
    line-height: 1.4;
}

.article-sidebar__latest a:last-child {
    border-bottom: 0;
}

.article-sidebar__latest a span {
    display: block;
    margin-bottom: 3px;
    color: var(--teal);
    font-size: .58rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

@media (max-width: 1120px) {
    .main-nav > a {
        padding-inline: 9px;
        font-size: .82rem;
    }

    .hero-grid {
        grid-template-columns: 1fr 440px;
        gap: 48px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .entry-card {
        min-height: 540px;
    }

    .access-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .source-strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .source-strip article:nth-child(3) {
        border-right: 0;
    }

    .source-strip article:nth-child(-n+3) {
        border-bottom: 1px solid var(--line);
    }

    .calculator-layout {
        grid-template-columns: minmax(0, 1fr) 390px;
    }

    .source-catalog {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-ladder {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr repeat(3, .65fr);
        gap: 32px;
    }
}

@media (max-width: 920px) {
    :root {
        --header-height: 70px;
    }

    .top-note__inner {
        min-height: 32px;
        font-size: .68rem;
    }

    .top-note__inner span:first-child,
    .top-note__separator {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        right: 20px;
        left: 20px;
        display: none;
        align-items: stretch;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: var(--white);
        box-shadow: var(--shadow);
    }

    .main-nav.is-open {
        display: grid;
    }

    .main-nav > a {
        padding: 12px 14px;
    }

    .main-nav .nav-account {
        margin: 6px 0 0;
    }

    .home-hero {
        padding: 70px 0 80px;
    }

    .hero-grid,
    .page-hero__inner,
    .calculator-layout,
    .workflow-grid,
    .dossier-layout,
    .compare-callout {
        grid-template-columns: 1fr;
    }

    .hero-console {
        max-width: 620px;
    }

    .entry-grid {
        grid-template-columns: 1fr;
    }

    .entry-card {
        min-height: 430px;
    }

    .entry-card > p {
        min-height: 0;
    }

    .entry-icon {
        margin-bottom: 38px;
    }

    .section-heading--split,
    .access-table-head {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .workflow-grid {
        gap: 50px;
    }

    .workflow-grid .section-heading {
        position: static;
    }

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

    .page-hero__inner {
        gap: 35px;
    }

    .page-hero__badge {
        max-width: 520px;
    }

    .calculator-layout {
        gap: 22px;
    }

    .result-panel {
        position: relative;
        top: auto;
        min-height: 0;
    }

    .result-empty,
    .result-content {
        min-height: 560px;
    }

    .map-layout {
        grid-template-columns: 1fr;
    }

    .map-sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .map-filters {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-account-card {
        margin-top: 24px;
    }

    .method-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .source-catalog {
        grid-template-columns: repeat(2, 1fr);
    }

    .compare-callout {
        gap: 40px;
    }

    .compare-mock {
        max-width: 520px;
    }

    .dossier-layout {
        gap: 60px;
    }

    .login-card {
        max-width: 540px;
    }

    .dashboard-preview {
        grid-template-columns: 160px 1fr;
    }

    .access-table {
        overflow-x: auto;
        border-radius: 16px;
    }

    .access-table__row {
        min-width: 920px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr repeat(2, .8fr);
    }

    .footer-grid > div:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    h1 {
        font-size: clamp(2.35rem, 12vw, 3.6rem);
    }

    h2 {
        font-size: clamp(1.9rem, 9vw, 2.65rem);
    }

    .brand__text {
        font-size: .92rem;
    }

    .brand img {
        width: 42px;
        height: 42px;
    }

    .main-nav {
        right: 14px;
        left: 14px;
    }

    .home-hero {
        padding-top: 54px;
    }

    .hero-copy > p {
        font-size: 1rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

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

    .hero-console {
        padding: 22px;
        border-radius: 24px;
    }

    .hero-console::before {
        top: 12px;
        left: 12px;
    }

    .console-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .console-score {
        grid-template-columns: 96px 1fr;
        gap: 16px;
    }

    .score-ring {
        width: 92px;
        height: 92px;
    }

    .console-bars > div {
        grid-template-columns: 1fr 75px 32px;
    }

    .section {
        padding: 76px 0;
    }

    .section--start {
        padding-top: 72px;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .entry-card {
        min-height: 0;
        padding: 24px;
    }

    .access-grid,
    .source-strip,
    .professional-grid,
    .dossier-benefits,
    .dashboard-metrics,
    .product-ladder__grid,
    .method-grid,
    .source-catalog,
    .product-grid {
        grid-template-columns: 1fr;
    }

    .access-grid article {
        min-height: 220px;
    }

    .source-strip article {
        min-height: 150px;
        border-right: 0 !important;
        border-bottom: 1px solid var(--line);
    }

    .source-strip article:last-child {
        border-bottom: 0;
    }

    .professional-card {
        min-height: 360px;
        padding: 30px;
        border-radius: 24px;
    }

    .page-hero {
        padding: 58px 0 52px;
    }

    .page-hero h1 {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }

    .calculator-section {
        padding: 42px 0 76px;
    }

    .calculator-form {
        padding: 22px;
        border-radius: 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .form-span-2 {
        grid-column: auto;
    }

    .result-empty,
    .result-content {
        min-height: 570px;
        padding: 26px;
    }

    .result-empty h2 {
        font-size: 2rem;
    }

    .result-score-block {
        grid-template-columns: 90px 1fr;
    }

    .result-score {
        width: 86px;
        height: 86px;
    }

    .result-metrics {
        grid-template-columns: 1fr;
    }

    .result-actions {
        grid-template-columns: 1fr;
    }

    .map-layout {
        border-radius: 18px;
    }

    .map-sidebar {
        padding: 22px;
    }

    .map-filters {
        grid-template-columns: 1fr;
    }

    .map-canvas,
    .map-layout {
        min-height: 610px;
    }

    .map-canvas > img {
        min-width: 760px;
    }

    .map-toolbar {
        display: grid;
    }

    .map-toolbar button {
        width: 100%;
    }

    .map-popup {
        right: 14px;
        bottom: 78px;
        width: calc(100% - 28px);
    }

    .source-card {
        min-height: 320px;
    }

    .source-card h2 {
        margin-top: 48px;
    }

    .compare-mock {
        grid-template-columns: 1fr;
    }

    .compare-mock span:not(:first-child),
    .compare-mock i:not(:nth-of-type(1)) {
        display: none;
    }

    .dossier-page {
        padding: 54px 0 70px;
    }

    .brand--standalone {
        margin-bottom: 44px;
    }

    .login-card {
        padding: 26px;
        border-radius: 22px;
    }

    .dashboard-preview {
        grid-template-columns: 1fr;
    }

    .dashboard-preview > aside {
        display: none;
    }

    .dashboard-main {
        padding: 20px;
    }

    .dashboard-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-row > div {
        grid-template-columns: 40px 1fr;
    }

    .dashboard-row b {
        grid-column: 2;
        justify-self: start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 24px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }

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

    .contact-dialog__shell {
        padding: 28px 22px;
    }

    .contact-dialog h2 {
        font-size: 1.85rem;
    }

    .toast {
        right: 14px;
        bottom: 14px;
        left: 14px;
        max-width: none;
    }
}


@media (max-width: 1120px) {
    .report-listing--home,
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-grid--home .article-card:last-child {
        display: none;
    }
}

@media (max-width: 920px) {
    .report-listing--full,
    .featured-article,
    .article-hero__inner,
    .article-layout,
    .editorial-note__inner {
        grid-template-columns: 1fr;
    }

    .featured-article__visual {
        min-height: 360px;
    }

    .article-hero__visual {
        max-width: 620px;
        min-height: 340px;
    }

    .article-layout {
        gap: 54px;
    }

    .article-body {
        max-width: none;
    }

    .article-sidebar {
        position: static;
        grid-template-columns: repeat(2, 1fr);
    }

    .article-sidebar__latest {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    .report-listing--home,
    .report-listing--full,
    .article-grid,
    .article-sidebar,
    .report-dialog__included ul {
        grid-template-columns: 1fr;
    }

    .article-grid--home .article-card:last-child {
        display: block;
    }

    .report-card {
        min-height: 0;
        padding: 24px;
    }

    .report-card__footer,
    .report-dialog__top,
    .article-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .report-card__footer {
        display: grid;
    }

    .report-dialog__shell {
        padding: 28px 22px;
    }

    .report-dialog__top {
        display: flex;
        padding-right: 36px;
    }

    .report-dialog__price {
        width: max-content;
        align-items: flex-start;
    }

    .report-dialog h2 {
        font-size: 1.75rem;
    }

    .featured-article__visual {
        min-height: 270px;
    }

    .featured-article__content {
        padding: 28px;
    }

    .article-card h3,
    .article-card p {
        min-height: 0;
    }

    .article-categories {
        justify-content: flex-start;
    }

    .editorial-note__inner {
        padding: 28px;
    }

    .article-hero {
        padding: 50px 0;
    }

    .article-hero__inner {
        gap: 38px;
    }

    .breadcrumb {
        margin-bottom: 28px;
    }

    .article-hero__visual {
        min-height: 270px;
    }

    .article-layout {
        padding-top: 54px;
        padding-bottom: 78px;
    }

    .article-body .article-lead {
        font-size: 1.08rem;
    }

    .article-end {
        padding: 26px;
    }

    .article-end > div {
        display: grid;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Access simplification, funding catalog and administration */
.home-hero--simple .hero-grid {
    grid-template-columns: minmax(0, 920px);
    justify-content: start;
}

.hero-copy--wide h1 {
    max-width: 920px;
}

.hero-copy--wide > p {
    max-width: 800px;
}

.access-value {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    line-height: 1.3;
}

.access-value i {
    display: inline-flex;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: .78rem;
    font-style: normal;
    font-weight: 900;
}

.access-value--yes i {
    background: #dcefe7;
    color: #167553;
}

.access-value--no i {
    background: #f9e1de;
    color: #b93f35;
}

.access-value--yes span {
    color: #355f57;
}

.access-value--no span {
    color: #8a5651;
}

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

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

.funding-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: 0 10px 28px rgba(18, 52, 59, .04);
}

.funding-card--deschis,
.funding-card--programat {
    border-color: rgba(62, 143, 130, .38);
    background: linear-gradient(145deg, rgba(217, 235, 229, .58), rgba(255, 255, 255, .96));
}

.funding-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.funding-card__meta small {
    color: #718480;
    font-size: .68rem;
    white-space: nowrap;
}

.funding-status {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: #385f8e;
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .04em;
    line-height: 1;
    text-transform: uppercase;
}

.funding-status--deschis {
    background: #dcefe7;
    color: #167553;
}

.funding-status--programat,
.funding-status--pregatire {
    background: var(--orange-soft);
    color: #97600c;
}

.funding-status--implementare,
.funding-status--evaluare {
    background: var(--purple-soft);
    color: #665182;
}

.funding-status--inchis {
    background: #eceeed;
    color: #697672;
}

.funding-card h3 {
    margin-bottom: 6px;
    font-size: 1.36rem;
}

.funding-card__authority {
    margin-bottom: 16px;
    color: var(--teal);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .035em;
    text-transform: uppercase;
}

.funding-card > p:not(.funding-card__authority) {
    margin-bottom: 20px;
}

.funding-card dl {
    display: grid;
    gap: 10px;
    margin: 0 0 20px;
}

.funding-card dl div {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
}

.funding-card dt {
    color: #718480;
    font-size: .68rem;
    font-weight: 750;
    text-transform: uppercase;
}

.funding-card dd {
    margin: 0;
    color: var(--ink-deep);
    font-size: .78rem;
    font-weight: 650;
    line-height: 1.45;
}

.funding-card details {
    margin-bottom: 18px;
    padding: 12px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.funding-card summary {
    cursor: pointer;
    color: var(--ink);
    font-size: .78rem;
    font-weight: 800;
}

.funding-card details ul {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
    padding-left: 20px;
    color: var(--ink-soft);
    font-size: .74rem;
}

.funding-source-link {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--ink);
    font-size: .75rem;
    font-weight: 850;
    text-decoration: underline;
    text-decoration-color: rgba(62, 143, 130, .35);
    text-underline-offset: 4px;
}

.funding-checker-section {
    border-top: 1px solid var(--line);
}

[data-funding-selection-note] {
    color: var(--teal) !important;
    font-weight: 700;
}

/* Administration */
.admin-body {
    min-height: 100vh;
    background: #eef2ef;
}

.admin-shell {
    width: min(calc(100% - 40px), 1460px);
    margin-inline: auto;
}

.admin-login-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 32px 20px;
}

.admin-login-card {
    width: min(100%, 470px);
    padding: 38px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.admin-login-card .brand {
    margin-bottom: 36px;
}

.admin-login-card h1 {
    margin-bottom: 14px;
    font-size: clamp(2.2rem, 7vw, 3.3rem);
}

.admin-login-form,
.admin-form {
    display: grid;
    gap: 18px;
}

.admin-login-form {
    margin: 26px 0 22px;
}

.admin-login-form label,
.admin-form label {
    display: grid;
    gap: 7px;
}

.admin-login-form label > span,
.admin-form label > span {
    color: var(--ink-deep);
    font-size: .72rem;
    font-weight: 800;
}

.admin-login-form input,
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #cfd9d5;
    border-radius: 12px;
    outline: none;
    background: var(--white);
    color: var(--ink-deep);
}

.admin-login-form input,
.admin-form input,
.admin-form select {
    min-height: 48px;
    padding: 11px 13px;
}

.admin-form textarea {
    padding: 13px;
    resize: vertical;
    line-height: 1.55;
}

.admin-login-form input:focus,
.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(62, 143, 130, .12);
}

.admin-header {
    position: sticky;
    z-index: 50;
    top: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.admin-header__inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    gap: 30px;
}

.admin-nav {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: auto;
}

.admin-nav a,
.admin-logout {
    padding: 9px 13px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #536c70;
    cursor: pointer;
    font-size: .76rem;
    font-weight: 800;
}

.admin-nav a.is-active {
    background: var(--teal-soft);
    color: #256b60;
}

.admin-logout {
    border: 1px solid var(--line);
    background: var(--white);
}

.admin-main {
    padding: 44px 0 80px;
}

.admin-page-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 28px;
}

.admin-page-head h1 {
    margin-bottom: 8px;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.admin-page-head p {
    max-width: 760px;
    margin-bottom: 0;
}

.admin-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(330px, .75fr);
    align-items: start;
    gap: 22px;
}

.admin-panel {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-small);
}

.admin-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--line);
}

.admin-panel__head small {
    color: var(--teal);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.admin-panel__head h2 {
    margin: 4px 0 0;
    font-size: 1.45rem;
}

.admin-form {
    padding: 24px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.admin-span-2 {
    grid-column: 1 / -1;
}

.admin-form label small {
    color: #748682;
    font-size: .68rem;
}

.admin-checkbox {
    display: flex !important;
    align-items: center;
    grid-template-columns: none !important;
    gap: 9px !important;
    padding-top: 25px;
}

.admin-checkbox input {
    width: 18px;
    min-height: 18px;
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
}

.admin-list-panel {
    position: sticky;
    top: 98px;
    max-height: calc(100vh - 120px);
}

.admin-items {
    max-height: calc(100vh - 205px);
    overflow-y: auto;
}

.admin-item {
    padding: 19px 22px;
    border-bottom: 1px solid var(--line);
}

.admin-item:last-child {
    border-bottom: 0;
}

.admin-item.is-current {
    background: rgba(217, 235, 229, .5);
}

.admin-item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.admin-item__meta time {
    color: #718480;
    font-size: .62rem;
}

.admin-item h3 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.admin-item > small {
    color: #718480;
    font-size: .68rem;
}

.admin-item__actions {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 14px;
}

.admin-item__actions a,
.admin-item__actions button {
    padding: 0;
    border: 0;
    background: none;
    color: var(--teal);
    cursor: pointer;
    font-size: .7rem;
    font-weight: 850;
}

.admin-item__actions button {
    color: #b3483f;
}

.admin-status {
    display: inline-flex;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eceeed;
    color: #697672;
    font-size: .62rem;
    font-weight: 850;
    text-transform: uppercase;
}

.admin-status--published {
    background: #dcefe7;
    color: #167553;
}

.admin-status--scheduled {
    background: var(--orange-soft);
    color: #97600c;
}

.admin-flash {
    margin-bottom: 22px;
    padding: 13px 16px;
    border: 1px solid #b9dfd2;
    border-radius: 12px;
    background: #e4f3ed;
    color: #226b58;
    font-size: .78rem;
    font-weight: 750;
}

.admin-flash--error {
    border-color: #efc4be;
    background: #fbe9e6;
    color: #9c3e35;
}

@media (max-width: 1120px) {
    .funding-catalog {
        grid-template-columns: 1fr;
    }

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

    .admin-list-panel {
        position: static;
        max-height: none;
    }

    .admin-items {
        max-height: none;
    }
}

@media (max-width: 760px) {
    .funding-card {
        padding: 22px;
    }

    .funding-card__meta,
    .admin-page-head,
    .admin-header__inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .funding-card dl div {
        grid-template-columns: 1fr;
        gap: 3px;
    }

    .admin-header__inner {
        padding: 14px 0;
        gap: 12px;
    }

    .admin-nav {
        width: 100%;
        margin-left: 0;
        overflow-x: auto;
    }

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

    .admin-span-2 {
        grid-column: auto;
    }

    .admin-login-card {
        padding: 26px;
    }
}

/* v1.3.1 - reduced public operator references and removed public phone number */
.brand--primary,
.brand--footer {
    gap: 13px;
}

.brand__mark {
    display: block;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(10, 39, 46, .18);
}

.brand--primary .brand__text,
.brand--footer .brand__text {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-size: 1.03rem;
    letter-spacing: -.045em;
}

.brand--primary .brand__text strong,
.brand--footer .brand__text strong {
    font-weight: 560;
}

.brand--primary .brand__text b,
.brand--footer .brand__text b {
    color: var(--ink-deep);
    font-weight: 900;
}

.brand--primary .brand__text small,
.brand--footer .brand__text small {
    margin-left: 2px;
    color: var(--orange);
    font-size: .68em;
    font-weight: 900;
}

.brand--footer .brand__text strong,
.brand--footer .brand__text b {
    color: var(--white);
}

.page-hero--calculators {
    background:
        radial-gradient(circle at 86% 22%, rgba(120, 188, 169, .30), transparent 23%),
        linear-gradient(135deg, #edf5f1 0%, #f7f8f4 62%, #fff3df 100%);
}

.calculators-hub {
    background: var(--white);
}

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

.calculator-hub-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 440px;
    flex-direction: column;
    overflow: hidden;
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    box-shadow: 0 10px 34px rgba(18, 52, 59, .055);
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.calculator-hub-card::after {
    position: absolute;
    z-index: 0;
    top: -88px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(120, 188, 169, .13);
    content: "";
}

.calculator-hub-card--public::after {
    background: rgba(77, 119, 168, .13);
}

.calculator-hub-card--lighting::after,
.calculator-hub-card--funding::after {
    background: rgba(246, 169, 59, .17);
}

.calculator-hub-card:hover {
    transform: translateY(-5px);
    border-color: rgba(62, 143, 130, .40);
    box-shadow: var(--shadow-small);
}

.calculator-hub-card > * {
    position: relative;
    z-index: 1;
}

.calculator-hub-card__top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    margin-bottom: 48px;
}

.calculator-hub-card__top > span {
    color: rgba(18, 52, 59, .46);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.calculator-hub-card__top i {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    justify-self: start;
    border: 1px solid rgba(18, 52, 59, .10);
    border-radius: 17px;
    background: var(--white);
    color: var(--teal);
    font-size: 1.55rem;
    font-style: normal;
    box-shadow: 0 10px 24px rgba(18, 52, 59, .08);
}

.calculator-hub-card--public .calculator-hub-card__top i {
    color: var(--blue);
}

.calculator-hub-card--lighting .calculator-hub-card__top i,
.calculator-hub-card--funding .calculator-hub-card__top i {
    color: #a86711;
}

.calculator-hub-card__top em {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--teal-soft);
    color: #226b5b;
    font-size: .64rem;
    font-style: normal;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.calculator-hub-card h3 {
    margin-bottom: 13px;
    font-size: clamp(1.7rem, 2.6vw, 2.35rem);
    letter-spacing: -.055em;
}

.calculator-hub-card > p {
    max-width: 620px;
    margin-bottom: 21px;
}

.calculator-hub-card ul {
    display: grid;
    gap: 9px;
    margin: 0 0 28px;
    padding: 0;
    list-style: none;
}

.calculator-hub-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #526d72;
    font-size: .82rem;
    font-weight: 650;
}

.calculator-hub-card li::before {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--teal);
    content: "";
}

.calculator-hub-card .button {
    margin-top: auto;
}

.calculator-hub-method {
    border-top: 1px solid var(--line);
}

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

.entry-card {
    min-height: 500px;
    padding: 25px;
}

.entry-card--funding::after {
    background: rgba(242, 184, 75, .17);
}

.entry-card--funding .entry-icon {
    color: #9c6416;
}

.entry-card h3 {
    font-size: clamp(1.45rem, 2vw, 1.85rem);
}

.entry-card > p {
    min-height: 132px;
}

.funding-checker-section--first {
    padding-top: 82px;
    border-top: 0;
    background: var(--white);
}

.funding-calculator-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(350px, .8fr);
    align-items: end;
    gap: 64px;
    margin-bottom: 34px;
}

.funding-calculator-intro h2 {
    margin-bottom: 13px;
}

.funding-calculator-intro p {
    max-width: 700px;
    margin-bottom: 0;
}

.funding-steps {
    display: grid;
    gap: 9px;
}

.funding-steps span {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    border: 1px solid rgba(18, 52, 59, .10);
    border-radius: 13px;
    background: rgba(255, 255, 255, .72);
    color: var(--ink-soft);
    font-size: .78rem;
    font-weight: 750;
}

.funding-steps b {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    font-size: .68rem;
}

.funding-card__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 18px;
    margin-top: auto;
}

.funding-card__actions > a:last-child {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(18, 52, 59, .15);
    border-radius: 999px;
    background: var(--white);
    color: var(--ink);
    font-size: .72rem;
    font-weight: 850;
    transition: border-color .2s ease, background .2s ease;
}

.funding-card__actions > a:last-child:hover {
    border-color: var(--teal);
    background: var(--teal-soft);
}

.report-provider {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 2px 14px;
    margin: 0 0 22px;
    padding: 14px 16px;
    border: 1px solid rgba(18, 52, 59, .11);
    border-radius: 14px;
    background: var(--paper);
}

.report-provider > span {
    grid-row: 1 / 3;
    align-self: center;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--orange-soft);
    color: #99610f;
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.report-provider strong {
    color: var(--ink-deep);
    font-size: .82rem;
}

.report-provider small {
    color: #6a7f82;
    font-size: .65rem;
}

.reports-provider-band {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 34px;
    margin-bottom: 25px;
    padding: 22px 24px;
    border: 1px solid rgba(18, 52, 59, .13);
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #eef5f2 0%, #fff8ec 100%);
}

.reports-provider-band > div {
    display: grid;
    gap: 3px;
}

.reports-provider-band span {
    color: var(--teal);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.reports-provider-band strong {
    font-size: 1.08rem;
}

.reports-provider-band small {
    color: #667d80;
    font-size: .7rem;
}

.reports-provider-band p {
    margin: 0;
    padding-left: 28px;
    border-left: 1px solid rgba(18, 52, 59, .12);
    font-size: .8rem;
}

.footer-grid--legal {
    grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(150px, .58fr));
}

.footer-operator {
    display: grid;
    gap: 3px;
    margin-top: 23px;
    padding: 15px 16px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 14px;
    background: rgba(255, 255, 255, .045);
}

.footer-operator strong {
    color: rgba(255, 255, 255, .88);
    font-size: .72rem;
    letter-spacing: 0;
}

.footer-operator span,
.footer-operator a {
    color: rgba(255, 255, 255, .48);
    font-size: .66rem;
}

.footer-operator a:hover {
    color: var(--orange);
}

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 0 62px;
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at 85% 20%, rgba(120, 188, 169, .20), transparent 26%),
        var(--paper-warm);
}

.legal-hero h1 {
    max-width: 900px;
    margin-bottom: 17px;
    font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.legal-hero p {
    max-width: 780px;
    margin-bottom: 14px;
    font-size: 1.03rem;
}

.legal-hero > .container > small {
    color: #6e817f;
    font-size: .72rem;
    font-weight: 700;
}

.breadcrumb {
    margin-bottom: 30px;
}

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

.legal-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 790px);
    justify-content: center;
    align-items: start;
    gap: 66px;
}

.legal-nav {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
}

.legal-nav strong {
    margin-bottom: 6px;
    color: var(--ink-deep);
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.legal-nav a {
    padding: 8px 9px;
    border-radius: 9px;
    color: #5d7478;
    font-size: .74rem;
    font-weight: 700;
}

.legal-nav a:hover {
    background: var(--white);
    color: var(--ink-deep);
}

.legal-content {
    min-width: 0;
}

.legal-content h2 {
    margin: 45px 0 15px;
    padding-top: 7px;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    letter-spacing: -.045em;
}

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

.legal-content p,
.legal-content li {
    font-size: .93rem;
}

.legal-content a {
    color: var(--teal);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content ul {
    display: grid;
    gap: 9px;
    padding-left: 22px;
    color: var(--ink-soft);
}

.legal-callout {
    margin: 25px 0;
    padding: 20px 22px;
    border: 1px solid rgba(62, 143, 130, .28);
    border-left: 4px solid var(--teal);
    border-radius: 14px;
    background: rgba(217, 235, 229, .38);
}

.legal-callout strong {
    display: block;
    margin-bottom: 6px;
}

.legal-callout p {
    margin-bottom: 0;
}

.cookie-table {
    overflow: hidden;
    margin: 24px 0;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.cookie-table__row {
    display: grid;
    grid-template-columns: 1.15fr .85fr 2fr .7fr;
    border-bottom: 1px solid var(--line);
}

.cookie-table__row:last-child {
    border-bottom: 0;
}

.cookie-table__row > div {
    min-width: 0;
    padding: 13px 14px;
    border-right: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: .75rem;
}

.cookie-table__row > div:last-child {
    border-right: 0;
}

.cookie-table__head {
    background: var(--ink);
}

.cookie-table__head > div {
    border-right-color: rgba(255, 255, 255, .12);
    color: var(--white);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.cookie-table code {
    font-size: .72rem;
    word-break: break-all;
}

.cookie-banner {
    position: fixed;
    z-index: 100;
    right: 22px;
    bottom: 22px;
    left: 22px;
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    align-items: center;
    gap: 18px 28px;
    max-width: 1160px;
    margin-inline: auto;
    padding: 19px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    background: rgba(10, 39, 46, .98);
    color: var(--white);
    box-shadow: 0 30px 80px rgba(5, 24, 29, .36);
    backdrop-filter: blur(16px);
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__copy span {
    display: block;
    margin-bottom: 4px;
    color: var(--orange);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cookie-banner__copy p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .74rem;
    line-height: 1.5;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

.cookie-banner .button {
    min-height: 42px;
    padding: 10px 15px;
    font-size: .7rem;
}

.cookie-banner .button--ghost {
    border-color: rgba(255, 255, 255, .20);
    background: transparent;
    color: var(--white);
}

.cookie-banner > a {
    grid-column: 1 / -1;
    width: max-content;
    color: rgba(255, 255, 255, .52);
    font-size: .66rem;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.button--cookie-essential {
    border-color: rgba(255, 255, 255, .18);
    background: var(--white);
    color: var(--ink-deep);
}

.cookie-dialog {
    width: min(620px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 0;
    overflow: auto;
    border: 0;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: 0 40px 100px rgba(7, 32, 38, .38);
}

.cookie-dialog::backdrop {
    background: rgba(7, 32, 38, .64);
    backdrop-filter: blur(7px);
}

.cookie-dialog__shell {
    position: relative;
    padding: 34px;
}

.cookie-dialog__shell h2 {
    margin-bottom: 12px;
    font-size: 2rem;
}

.cookie-dialog__shell > p {
    margin-bottom: 24px;
}

.cookie-choice {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 10px;
    padding: 16px 17px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--paper);
    cursor: pointer;
}

.cookie-choice span {
    display: grid;
    gap: 2px;
}

.cookie-choice strong {
    font-size: .84rem;
}

.cookie-choice small {
    color: #6e8184;
    font-size: .68rem;
}

.cookie-choice input {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    accent-color: var(--teal);
}

.cookie-choice--locked {
    opacity: .82;
    cursor: default;
}

.cookie-dialog__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 22px;
}

.cookie-dialog .text-link {
    margin-top: 19px;
}

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

    .entry-card > p {
        min-height: 84px;
    }

    .footer-grid--legal {
        grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(140px, .55fr));
        gap: 34px;
    }
}

@media (max-width: 980px) {
    .calculator-hub-grid,
    .funding-calculator-intro,
    .reports-provider-band,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .funding-calculator-intro {
        gap: 24px;
    }

    .reports-provider-band p {
        padding: 18px 0 0;
        border-top: 1px solid rgba(18, 52, 59, .12);
        border-left: 0;
    }

    .legal-nav {
        position: static;
        grid-template-columns: auto repeat(4, auto);
        align-items: center;
        overflow-x: auto;
    }

    .legal-nav strong {
        margin: 0 8px 0 0;
        white-space: nowrap;
    }

    .legal-nav a {
        white-space: nowrap;
    }

    .cookie-banner {
        grid-template-columns: 1fr;
    }

    .cookie-banner__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 820px) {
    .footer-grid--legal {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .cookie-table {
        border: 0;
        border-radius: 0;
    }

    .cookie-table__row {
        grid-template-columns: 1fr;
        margin-bottom: 12px;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 12px;
        background: var(--white);
    }

    .cookie-table__row > div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .cookie-table__row > div:last-child {
        border-bottom: 0;
    }

    .cookie-table__head {
        display: none;
    }
}

@media (max-width: 660px) {
    .brand__mark {
        width: 43px;
        height: 43px;
        border-radius: 13px;
    }

    .brand--primary .brand__text,
    .brand--footer .brand__text {
        font-size: .88rem;
    }

    .calculator-hub-card {
        min-height: auto;
        padding: 24px;
    }

    .calculator-hub-card__top {
        margin-bottom: 34px;
    }

    .entry-grid,
    .footer-grid--legal {
        grid-template-columns: 1fr;
    }

    .entry-card {
        min-height: auto;
    }

    .entry-card > p {
        min-height: auto;
    }

    .footer-brand {
        grid-column: auto;
    }

    .legal-hero {
        padding: 54px 0 48px;
    }

    .legal-nav {
        display: flex;
        align-items: center;
    }

    .legal-content h2 {
        margin-top: 36px;
    }

    .cookie-banner {
        right: 10px;
        bottom: 10px;
        left: 10px;
        padding: 17px;
        border-radius: 17px;
    }

    .cookie-banner__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-banner .button {
        width: 100%;
    }

    .cookie-dialog__shell {
        padding: 27px 21px;
    }

    .cookie-dialog__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .cookie-dialog__actions .button {
        width: 100%;
    }
}

/* v1.4.0 - identitate minimalista, comenzi prin ordin de plata si administrarea rapoartelor */
[hidden] {
    display: none !important;
}

.brand--primary,
.brand--footer,
.admin-login-card .brand,
.admin-header .brand {
    gap: 12px;
}

.brand__mark,
.admin-login-card .brand__mark,
.admin-header .brand__mark {
    width: 48px;
    height: 48px;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
    flex: 0 0 auto;
}

.brand--primary .brand__text,
.brand--footer .brand__text,
.admin-login-card .brand__text,
.admin-header .brand__text {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-size: 1.02rem;
    line-height: 1;
    letter-spacing: -.035em;
}

.brand--primary .brand__text strong,
.brand--footer .brand__text strong,
.admin-login-card .brand__text strong,
.admin-header .brand__text strong {
    color: #0b3d44;
    font-weight: 610;
}

.brand--primary .brand__text b,
.brand--footer .brand__text b,
.admin-login-card .brand__text b,
.admin-header .brand__text b {
    color: #0b3d44;
    font-weight: 820;
}

.brand--primary .brand__text small,
.brand--footer .brand__text small,
.admin-login-card .brand__text small,
.admin-header .brand__text small {
    color: #c78d27;
    font-size: .72em;
    font-weight: 800;
    letter-spacing: -.02em;
}

.report-dialog__price small {
    display: block;
    margin-top: 5px;
    color: rgba(255, 255, 255, .72);
    font-size: .72rem;
    font-weight: 650;
    line-height: 1.3;
}

.form-trap {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.report-payment-box {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 18px 0 20px;
}

.report-payment-box > div {
    display: grid;
    gap: 5px;
    padding: 16px 17px;
    border: 1px solid rgba(11, 61, 68, .12);
    border-radius: 14px;
    background: #f5f7f2;
}

.report-payment-box span,
.order-confirmation-summary span,
.admin-order__summary span {
    color: #64777b;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.report-payment-box strong {
    color: #0b3d44;
    font-size: 1rem;
}

.report-payment-box small {
    color: #66797d;
    font-size: .78rem;
    line-height: 1.48;
}

.report-payment-section {
    padding-top: 0;
}

.report-payment-panel {
    display: grid;
    grid-template-columns: minmax(270px, .82fr) minmax(0, 1.18fr);
    gap: 56px;
    align-items: start;
    padding: 42px;
    border: 1px solid rgba(11, 61, 68, .12);
    border-radius: 24px;
    background: linear-gradient(135deg, #f7f8f4 0%, #ffffff 100%);
    box-shadow: 0 24px 60px rgba(14, 46, 52, .08);
}

.report-payment-panel > div:first-child p {
    max-width: 620px;
    margin-bottom: 0;
    color: #5f7478;
}

.report-payment-steps {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.report-payment-steps article {
    min-height: 165px;
    padding: 22px;
    border: 1px solid rgba(11, 61, 68, .1);
    border-radius: 16px;
    background: #fff;
}

.report-payment-steps article > span {
    display: inline-grid;
    width: 34px;
    height: 34px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    background: #eaf2ee;
    color: #0b615c;
    font-size: .76rem;
    font-weight: 850;
}

.report-payment-steps h3 {
    margin: 0 0 8px;
    color: #0b3d44;
    font-size: 1rem;
}

.report-payment-steps p {
    margin: 0;
    color: #65787c;
    font-size: .86rem;
    line-height: 1.55;
}

.order-confirmation-page {
    min-height: 70vh;
    padding: 78px 0 96px;
    background:
        radial-gradient(circle at 14% 14%, rgba(212, 154, 47, .09), transparent 26%),
        linear-gradient(180deg, #f7f8f4 0%, #ffffff 100%);
}

.order-confirmation-shell {
    max-width: 980px;
}

.order-confirmation-card {
    padding: clamp(28px, 5vw, 54px);
    border: 1px solid rgba(11, 61, 68, .13);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(13, 46, 53, .1);
}

.order-confirmation-card > h1 {
    margin: 10px 0 16px;
    color: #0b3d44;
    font-size: clamp(2rem, 5vw, 3.5rem);
    letter-spacing: -.055em;
}

.order-confirmation-card > p {
    max-width: 760px;
    color: #607579;
    line-height: 1.72;
}

.order-confirmation-icon {
    display: inline-grid;
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 50%;
    background: #e3f2ea;
    color: #11715e;
    font-size: 1.45rem;
    font-weight: 900;
}

.order-confirmation-card--error .order-confirmation-icon {
    background: #fce8e7;
    color: #b43b35;
}

.order-confirmation-card--error ul {
    margin: 20px 0 28px;
    padding-left: 20px;
    color: #8d3733;
}

.order-confirmation-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin: 30px 0 22px;
}

.order-confirmation-summary > div {
    display: grid;
    align-content: start;
    gap: 7px;
    min-height: 132px;
    padding: 18px;
    border: 1px solid rgba(11, 61, 68, .1);
    border-radius: 15px;
    background: #f7f8f4;
}

.order-confirmation-summary strong {
    color: #0b3d44;
    font-size: .96rem;
    line-height: 1.38;
}

.order-confirmation-summary small {
    color: #6b7d80;
    font-size: .75rem;
    line-height: 1.4;
}

.order-confirmation-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin: 28px 0;
    overflow: hidden;
    border: 1px solid rgba(11, 61, 68, .11);
    border-radius: 16px;
}

.order-confirmation-steps > div {
    position: relative;
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 11px;
    align-items: start;
    min-height: 110px;
    padding: 18px 16px;
    background: #fff;
}

.order-confirmation-steps > div + div {
    border-left: 1px solid rgba(11, 61, 68, .1);
}

.order-confirmation-steps span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: #0b3d44;
    color: #fff;
    font-size: .72rem;
    font-weight: 850;
}

.order-confirmation-steps p {
    margin: 3px 0 0;
    color: #5e7377;
    font-size: .82rem;
    line-height: 1.5;
}

.order-confirmation-note {
    padding: 14px 16px;
    border-left: 3px solid #d49a2f;
    border-radius: 0 10px 10px 0;
    background: #fff9eb;
    color: #70531f !important;
    font-size: .86rem;
}

.order-confirmation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.admin-orders {
    display: grid;
    gap: 20px;
}

.admin-order {
    overflow: hidden;
    border: 1px solid rgba(11, 61, 68, .14);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(12, 45, 51, .06);
}

.admin-order.is-current {
    border-color: rgba(212, 154, 47, .75);
    box-shadow: 0 0 0 3px rgba(212, 154, 47, .12), 0 18px 44px rgba(12, 45, 51, .08);
}

.admin-order__head {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    padding: 24px 26px;
    border-bottom: 1px solid rgba(11, 61, 68, .09);
    background: #f7f8f4;
}

.admin-order__head h2 {
    margin: 6px 0;
    color: #0b3d44;
    font-size: 1.1rem;
}

.admin-order__head small {
    color: #687b7f;
}

.admin-order__id {
    color: #976719;
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.admin-order-status {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #e8edef;
    color: #465e63;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .055em;
    text-transform: uppercase;
}

.admin-order-status--new { background: #fff1d5; color: #925d0b; }
.admin-order-status--proforma_sent { background: #e6eefb; color: #315e93; }
.admin-order-status--payment_confirmed { background: #e2f1e8; color: #1d6b4e; }
.admin-order-status--in_progress { background: #ece6f8; color: #64468f; }
.admin-order-status--delivered { background: #dff3ea; color: #14644e; }
.admin-order-status--cancelled { background: #f6e6e5; color: #9c3f3a; }

.admin-order__summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-bottom: 1px solid rgba(11, 61, 68, .09);
}

.admin-order__summary > div {
    display: grid;
    align-content: start;
    gap: 6px;
    min-height: 122px;
    padding: 20px 22px;
}

.admin-order__summary > div + div {
    border-left: 1px solid rgba(11, 61, 68, .09);
}

.admin-order__summary strong {
    color: #0b3d44;
    font-size: .91rem;
    overflow-wrap: anywhere;
}

.admin-order__summary small {
    color: #687b7f;
    font-size: .76rem;
    line-height: 1.45;
    overflow-wrap: anywhere;
}

.admin-order__details {
    padding: 16px 24px;
    border-bottom: 1px solid rgba(11, 61, 68, .09);
    background: #fbfcfa;
}

.admin-order__details summary {
    cursor: pointer;
    color: #0b3d44;
    font-size: .82rem;
    font-weight: 800;
}

.admin-order__details pre {
    max-height: 260px;
    margin: 16px 0 0;
    overflow: auto;
    white-space: pre-wrap;
    color: #50666a;
    font: 500 .77rem/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.admin-order__timeline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    padding: 17px 24px;
    border-bottom: 1px solid rgba(11, 61, 68, .09);
    background: #eef5f1;
    color: #5d7175;
    font-size: .78rem;
}

.admin-order__timeline strong {
    color: #0b3d44;
}

.admin-order-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    padding: 24px;
}

.admin-order-form label {
    display: grid;
    gap: 7px;
}

.admin-order-form label > span {
    color: #405b60;
    font-size: .72rem;
    font-weight: 800;
}

.admin-order-form input,
.admin-order-form select,
.admin-order-form textarea {
    width: 100%;
    min-height: 43px;
    padding: 10px 12px;
    border: 1px solid rgba(11, 61, 68, .18);
    border-radius: 10px;
    background: #fff;
    color: #183d43;
    font: inherit;
}

.admin-order-form textarea {
    min-height: 88px;
    resize: vertical;
}

.admin-order-form__wide,
.admin-order-form__actions {
    grid-column: 1 / -1;
}

.admin-order-form__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.admin-empty-state {
    padding: 44px;
    text-align: center;
}

@media (max-width: 1080px) {
    .report-payment-panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .order-confirmation-summary,
    .admin-order__summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-order__summary > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(11, 61, 68, .09);
    }

    .admin-order__summary > div:nth-child(4) {
        border-top: 1px solid rgba(11, 61, 68, .09);
    }

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

    .order-confirmation-steps > div:nth-child(3) {
        border-left: 0;
        border-top: 1px solid rgba(11, 61, 68, .1);
    }

    .order-confirmation-steps > div:nth-child(4) {
        border-top: 1px solid rgba(11, 61, 68, .1);
    }

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

@media (max-width: 700px) {
    .brand__mark,
    .admin-login-card .brand__mark,
    .admin-header .brand__mark {
        width: 42px;
        height: 42px;
        border-radius: 0;
    }

    .brand--primary .brand__text,
    .brand--footer .brand__text,
    .admin-login-card .brand__text,
    .admin-header .brand__text {
        font-size: .88rem;
    }

    .report-payment-box,
    .report-payment-steps,
    .order-confirmation-summary,
    .order-confirmation-steps,
    .admin-order__summary,
    .admin-order-form {
        grid-template-columns: 1fr;
    }

    .report-payment-panel {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .report-payment-steps article {
        min-height: auto;
    }

    .order-confirmation-page {
        padding: 44px 0 64px;
    }

    .order-confirmation-card {
        padding: 26px 20px;
        border-radius: 19px;
    }

    .order-confirmation-summary > div,
    .order-confirmation-steps > div {
        min-height: auto;
    }

    .order-confirmation-steps > div + div,
    .order-confirmation-steps > div:nth-child(3),
    .order-confirmation-steps > div:nth-child(4),
    .admin-order__summary > div + div,
    .admin-order__summary > div:nth-child(3),
    .admin-order__summary > div:nth-child(4) {
        border-left: 0;
        border-top: 1px solid rgba(11, 61, 68, .1);
    }

    .order-confirmation-actions,
    .admin-order-form__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .order-confirmation-actions .button,
    .admin-order-form__actions .button {
        width: 100%;
    }

    .admin-order__head {
        display: grid;
        padding: 20px;
    }

    .admin-order__summary > div,
    .admin-order-form,
    .admin-order__details,
    .admin-order__timeline {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* v1.4.1 - wordmark tipografic, acoperis necunoscut si termen maxim de livrare */
.brand__wordmark {
    display: block;
    width: 252px;
    max-width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    object-fit: contain;
}

.brand--footer .brand__wordmark {
    width: 268px;
}

.brand--standalone .brand__wordmark,
.admin-login-card .brand__wordmark {
    width: 260px;
}

.admin-header .brand__wordmark {
    width: 230px;
}

.report-dialog__price small {
    color: #6d542b;
    opacity: 1;
    font-weight: 760;
}

@media (max-width: 760px) {
    .brand--primary .brand__wordmark {
        width: 210px;
    }

    .brand--footer .brand__wordmark,
    .brand--standalone .brand__wordmark,
    .admin-login-card .brand__wordmark {
        width: 225px;
    }

    .admin-header .brand__wordmark {
        width: 195px;
    }
}

@media (max-width: 390px) {
    .brand--primary .brand__wordmark {
        width: 188px;
    }
}

/* v1.5.0 - identitate energie/date si biblioteca editoriala fara spatii vizuale goale */
.brand__wordmark {
    width: 318px;
}

.brand--footer .brand__wordmark {
    width: 324px;
}

.brand--standalone .brand__wordmark,
.admin-login-card .brand__wordmark {
    width: 310px;
}

.admin-header .brand__wordmark {
    width: 280px;
}

.page-hero__inner--editorial {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
}

.editorial-frequency {
    display: grid;
    min-width: 190px;
    padding: 24px 26px;
    border: 1px solid rgba(10, 75, 82, .16);
    border-radius: 22px;
    background: rgba(255, 255, 255, .68);
    box-shadow: var(--shadow-small);
}

.editorial-frequency strong {
    color: var(--teal);
    font-size: 2.5rem;
    line-height: 1;
    letter-spacing: -.06em;
}

.editorial-frequency span {
    margin-top: 8px;
    color: #5f7370;
    font-size: .74rem;
    font-weight: 720;
    line-height: 1.45;
}

.article-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.article-card {
    position: relative;
    display: flex;
    min-height: 360px;
    flex-direction: column;
    overflow: hidden;
    border-color: rgba(16, 47, 53, .12);
    box-shadow: 0 14px 38px rgba(16, 47, 53, .07);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.article-card:hover {
    border-color: rgba(11, 122, 117, .28);
    box-shadow: 0 20px 46px rgba(16, 47, 53, .11);
    transform: translateY(-3px);
}

.article-card__accent {
    height: 6px;
    flex: 0 0 auto;
    background: linear-gradient(90deg, #0b7a75, #2e78b8);
}

.article-card--storage .article-card__accent {
    background: linear-gradient(90deg, #315f98, #75aee3);
}

.article-card--public .article-card__accent {
    background: linear-gradient(90deg, #5b5377, #8f83b3);
}

.article-card--lighting .article-card__accent {
    background: linear-gradient(90deg, #a76418, #e0a047);
}

.article-card--funding .article-card__accent {
    background: linear-gradient(90deg, #8e5c24, #c98d45);
}

.article-card--geothermal .article-card__accent {
    background: linear-gradient(90deg, #476b55, #7da187);
}

.article-card--news .article-card__accent {
    background: linear-gradient(90deg, #0a4b52, #2e78b8, #0b7a75);
}

.article-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.article-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 24px;
}

.article-card__category {
    display: inline-flex;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--teal-soft);
    color: var(--teal);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.article-card--news .article-card__category {
    background: #e8f1f8;
    color: #285f8d;
}

.article-card__top time {
    flex: 0 0 auto;
    color: #788985;
    font-size: .68rem;
    font-weight: 680;
}

.article-card h3 {
    min-height: 0;
    margin-bottom: 16px;
    font-size: 1.38rem;
    line-height: 1.22;
}

.article-card p {
    min-height: 0;
    margin-bottom: 26px;
    flex: 1;
    color: #5d716d;
    font-size: .83rem;
    line-height: 1.7;
}

.article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.article-card__footer small {
    color: #788985;
    font-size: .68rem;
    font-weight: 720;
}

.featured-article-section {
    padding-top: 56px;
    padding-bottom: 56px;
}

.featured-article {
    display: grid;
    min-height: 0;
    grid-template-columns: 10px minmax(0, 1fr) 260px;
    overflow: hidden;
    border: 1px solid rgba(16, 47, 53, .12);
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: 0 20px 54px rgba(16, 47, 53, .09);
}

.featured-article__marker {
    display: grid;
    grid-template-rows: 1fr 1fr 1fr;
}

.featured-article__marker span:nth-child(1) {
    background: #0a4b52;
}

.featured-article__marker span:nth-child(2) {
    background: #0b7a75;
}

.featured-article__marker span:nth-child(3) {
    background: #2e78b8;
}

.featured-article__content {
    display: block;
    padding: 48px 52px;
}

.featured-article h2 {
    max-width: 850px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.2vw, 3.15rem);
    line-height: 1.08;
}

.featured-article__content > p {
    max-width: 780px;
    margin-bottom: 30px;
    font-size: .95rem;
    line-height: 1.75;
}

.featured-article__aside {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 36px;
    background: #0a343a;
    color: #fff;
}

.featured-article__aside span {
    margin-bottom: 12px;
    color: #91d8d0;
    font-size: .66rem;
    font-weight: 840;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.featured-article__aside strong {
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.3;
}

.featured-article__aside small {
    color: rgba(255, 255, 255, .67);
    font-size: .72rem;
    line-height: 1.5;
}

.article-hero__inner {
    display: grid;
    max-width: 1180px;
    grid-template-columns: minmax(0, 920px);
    justify-content: start;
}

.article-hero__copy {
    max-width: 920px;
}

.article-hero h1 {
    max-width: 900px;
}

.article-hero__copy > p {
    max-width: 790px;
}

.article-source {
    display: grid;
    gap: 7px;
    margin: 48px 0 0;
    padding: 24px 26px;
    border: 1px solid #cbdedb;
    border-radius: 18px;
    background: #f1f8f6;
}

.article-source > span {
    color: var(--teal);
    font-size: .66rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.article-source a {
    width: fit-content;
    color: var(--ink-deep);
    font-size: .88rem;
    font-weight: 780;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: rgba(11, 122, 117, .32);
    text-underline-offset: 4px;
}

.article-source small {
    color: #6b7f7b;
    font-size: .7rem;
}

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

    .featured-article {
        grid-template-columns: 8px minmax(0, 1fr) 230px;
    }
}

@media (max-width: 920px) {
    .page-hero__inner--editorial,
    .featured-article {
        grid-template-columns: 1fr;
    }

    .editorial-frequency {
        width: fit-content;
        min-width: 0;
    }

    .featured-article__marker {
        height: 7px;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: none;
    }

    .featured-article__aside {
        padding: 28px 42px;
    }
}

@media (max-width: 680px) {
    .brand--primary .brand__wordmark {
        width: 236px;
    }

    .brand--footer .brand__wordmark,
    .brand--standalone .brand__wordmark,
    .admin-login-card .brand__wordmark {
        width: 255px;
    }

    .admin-header .brand__wordmark {
        width: 220px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-card {
        min-height: 0;
    }

    .article-card__body {
        padding: 24px;
    }

    .article-card__top,
    .article-card__footer {
        align-items: flex-start;
    }

    .featured-article__content,
    .featured-article__aside {
        padding: 28px;
    }
}

@media (max-width: 390px) {
    .brand--primary .brand__wordmark {
        width: 214px;
    }
}

/* ========================================================================== 
   EnergiaRegenerabila.ro v1.6.2
   ========================================================================== */
:root {
    --er-ink: #082f35;
    --er-teal: #0b7a75;
    --er-mint: #84d8bd;
    --er-amber: #f3a536;
    --er-surface: #f7f8f4;
    --er-surface-2: #eef4f1;
    --er-border: #d3dfdb;
}

body {
    overflow-x: hidden;
}

.site-header {
    border-bottom: 1px solid rgba(8, 47, 53, .09);
    background: rgba(247, 248, 244, .94);
    backdrop-filter: blur(18px);
}

.header-inner {
    min-height: 86px;
}

.brand__wordmark {
    display: block;
    width: min(360px, 29vw);
    height: auto;
}

.brand--footer .brand__wordmark {
    width: 320px;
}

.main-nav {
    gap: 2px;
}

.main-nav > a {
    padding: 10px 12px;
    border-radius: 999px;
    font-size: .88rem;
}

.main-nav > a.is-active {
    background: #e1efeb;
    color: var(--er-ink);
}

.home-hero--v16 {
    min-height: 0;
    padding: clamp(76px, 9vw, 132px) 0 clamp(68px, 8vw, 108px);
    background:
        radial-gradient(circle at 87% 18%, rgba(243, 165, 54, .16), transparent 23%),
        radial-gradient(circle at 78% 86%, rgba(132, 216, 189, .2), transparent 29%),
        linear-gradient(130deg, #f9faf6 0%, #edf5f1 100%);
}

.home-hero--v16::before,
.home-hero--v16::after {
    display: none;
}

.home-hero--v16 .hero-grid {
    grid-template-columns: minmax(0, 900px);
}

.home-hero--v16 h1 {
    max-width: 980px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: .94;
}

.home-hero--v16 .hero-copy > p {
    max-width: 760px;
    margin-bottom: 32px;
    font-size: clamp(1.05rem, 1.65vw, 1.35rem);
    line-height: 1.55;
}

.hero-trust {
    display: grid;
    max-width: 880px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 44px;
}

.hero-trust > div {
    display: grid;
    gap: 4px;
    padding: 17px 20px;
    border: 1px solid rgba(8, 47, 53, .11);
    border-radius: 18px;
    background: rgba(255, 255, 255, .62);
}

.hero-trust strong {
    color: var(--er-ink);
    font-size: .98rem;
}

.hero-trust span {
    color: #617776;
    font-size: .78rem;
}

.page-hero--compact,
.calculator-page-hero {
    min-height: 0 !important;
    padding: clamp(56px, 7vw, 92px) 0 clamp(44px, 5vw, 70px) !important;
}

.page-hero--compact .container,
.calculator-page-hero .container {
    max-width: 1100px;
    margin-inline: auto;
}

.page-hero--compact h1,
.calculator-page-hero h1 {
    max-width: 980px;
    margin-bottom: 18px;
    font-size: clamp(2.7rem, 5.4vw, 5.5rem);
}

.page-hero--compact p,
.calculator-page-hero p {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 1.12rem;
}

.page-hero--funding {
    background:
        radial-gradient(circle at 92% -20%, rgba(243, 165, 54, .15), transparent 28%),
        #fff4dd;
}

.page-hero--map {
    background:
        radial-gradient(circle at 88% 18%, rgba(132, 216, 189, .19), transparent 26%),
        #edf4f1;
}

.entry-grid--compact .entry-card {
    min-height: 280px;
}

.entry-grid--compact .entry-card p {
    max-width: 32ch;
}

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

.calculator-directory-card {
    position: relative;
    display: grid;
    min-height: 270px;
    align-content: end;
    gap: 10px;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--er-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(8, 47, 53, .06);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.calculator-directory-card::before {
    position: absolute;
    top: -56px;
    right: -42px;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(132, 216, 189, .24), rgba(243, 165, 54, .12));
    content: "";
}

.calculator-directory-card:hover {
    transform: translateY(-4px);
    border-color: #9fc8be;
    box-shadow: 0 24px 52px rgba(8, 47, 53, .11);
}

.calculator-directory-card > span {
    color: var(--er-teal);
    font-size: .75rem;
    font-weight: 850;
    letter-spacing: .16em;
}

.calculator-directory-card h2 {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
}

.calculator-directory-card p {
    max-width: 38ch;
    margin: 0;
}

.calculator-directory-card strong {
    margin-top: 14px;
    color: var(--er-teal);
}

.calculator-section {
    padding: clamp(54px, 7vw, 90px) 0;
}

.calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(370px, .95fr);
    gap: 28px;
    align-items: start;
}

.calculator-form,
.result-panel {
    border: 1px solid var(--er-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 52px rgba(8, 47, 53, .07);
}

.calculator-form {
    padding: clamp(24px, 4vw, 40px);
}

.result-panel {
    position: sticky;
    top: 108px;
    min-height: 540px;
    overflow: hidden;
}

.form-grid {
    gap: 18px;
}

.form-grid label > span,
.contact-form label > span,
.county-map-panel label > span {
    margin-bottom: 8px;
    color: var(--er-ink);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .02em;
}

.form-grid input,
.form-grid select,
.form-grid textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.county-map-panel select {
    border: 1px solid #cbd9d5;
    background: #fbfcfa;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus,
.county-map-panel select:focus {
    border-color: var(--er-teal);
    box-shadow: 0 0 0 4px rgba(11, 122, 117, .1);
    outline: none;
}

.toggle-card {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(190px, 260px);
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border: 1px solid #c9ddd7;
    border-radius: 18px;
    background: #eef7f3;
}

.toggle-card > span {
    margin: 0 !important;
    font-size: .9rem !important;
}

.heatpump-fields {
    padding: 22px;
    border: 1px solid #d6e5e0;
    border-radius: 20px;
    background: #f7faf8;
}

.heatpump-fields[hidden] {
    display: none !important;
}

.result-empty {
    min-height: 540px;
    padding: 46px;
}

.result-content {
    padding: 0 0 32px;
}

.result-head {
    padding: 32px 34px 28px;
    background: linear-gradient(135deg, #0b3c42 0%, #0a5b5a 100%);
    color: #fff;
}

.result-head h2 {
    margin: 10px 0 8px;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.result-head p {
    margin: 0;
    color: rgba(255, 255, 255, .75);
}

.result-status {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .13);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.result-score {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    margin: 26px 30px;
    padding: 20px;
    border: 1px solid #d5e4df;
    border-radius: 18px;
    background: #f3f8f6;
}

.result-score__number {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.result-score__number strong {
    color: var(--er-teal);
    font-size: 2.8rem;
    line-height: 1;
}

.result-score__number span {
    color: #7b8e8b;
    font-size: .78rem;
}

.result-score p {
    margin: 3px 0 0;
    font-size: .83rem;
    line-height: 1.45;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0 30px;
}

.result-metric {
    display: grid;
    gap: 5px;
    min-height: 122px;
    align-content: start;
    padding: 18px;
    border: 1px solid #dce6e2;
    border-radius: 16px;
    background: #fff;
}

.result-metric > span {
    color: #718582;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.result-metric strong {
    color: var(--er-ink);
    font-size: 1.14rem;
    line-height: 1.25;
}

.result-metric small {
    color: #738582;
    line-height: 1.35;
}

.result-notes,
.result-report {
    margin: 24px 30px 0;
    padding: 22px;
    border-radius: 18px;
}

.result-notes {
    border: 1px solid #dce5e2;
    background: #fafbf9;
}

.result-notes ul {
    margin: 12px 0 0;
    padding-left: 20px;
}

.result-notes li + li {
    margin-top: 8px;
}

.result-report {
    background: #fff0d7;
}

.result-report h3 {
    margin-top: 8px;
}

.result-report p {
    font-size: .9rem;
}

.funding-checker-section {
    padding-top: 56px;
}

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

.funding-card {
    min-height: 0;
}

.funding-card dl {
    display: grid;
    gap: 10px;
}

.funding-card dl > div {
    grid-template-columns: 100px minmax(0, 1fr);
}

.map-section {
    padding-top: 52px;
}

.map-layout--counties {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, .55fr);
    gap: 22px;
    align-items: start;
}

.county-map-card,
.county-map-panel {
    border: 1px solid var(--er-border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(8, 47, 53, .07);
}

.county-map-card {
    min-height: 670px;
    padding: 18px;
    overflow: hidden;
}

.county-map-svg {
    display: block;
    width: 100%;
    height: auto;
    max-height: 760px;
}

.county-map-panel {
    position: sticky;
    top: 108px;
    padding: 30px;
}

.county-map-panel h2 {
    margin-bottom: 10px;
    font-size: 2.15rem;
}

.county-map-panel > p {
    min-height: 52px;
}

.county-map-panel label {
    display: grid;
    margin: 24px 0;
}

.map-production-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0 0 26px;
}

.map-production-grid > div {
    display: grid;
    gap: 6px;
    min-height: 88px;
    align-content: center;
    padding: 12px;
    border: 1px solid #d8e4e0;
    border-radius: 14px;
    background: #f7faf8;
    text-align: center;
}

.map-production-grid span {
    color: #728480;
    font-size: .72rem;
    font-weight: 800;
}

.map-production-grid strong {
    color: var(--er-ink);
    font-size: .85rem;
}

.map-legend {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 28px;
    padding-top: 22px;
    border-top: 1px solid #dde6e3;
}

.map-legend > span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #657a77;
    font-size: .82rem;
}

.map-legend i {
    display: inline-block;
    width: 28px;
    height: 9px;
    border-radius: 999px;
}

.legend-low { background: #d7eee6; }
.legend-mid { background: #8fd6c1; }
.legend-high { background: #f3b353; }

.source-strip--balanced {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.source-strip--balanced article {
    min-height: 210px;
    padding: 30px;
}

.source-preview--v16 .section-heading {
    margin-bottom: 32px;
}

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

.technology-grid article {
    min-height: 260px;
    padding: 30px;
    border: 1px solid var(--er-border);
    border-radius: 24px;
    background: #fff;
}

.technology-grid article > span {
    color: var(--er-teal);
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .12em;
}

.technology-grid h2 {
    margin-top: 34px;
    font-size: 2rem;
}

.technology-grid a {
    color: var(--er-teal);
    font-weight: 800;
}

.report-listing--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.report-order-note {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.report-order-note > div {
    display: grid;
    gap: 4px;
    padding: 20px;
    border: 1px solid var(--er-border);
    border-radius: 16px;
    background: #f8faf8;
}

.report-order-note span {
    color: #657976;
    font-size: .84rem;
}

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

.article-card {
    display: grid;
    min-height: 470px;
    grid-template-rows: 170px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--er-border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(8, 47, 53, .06);
}

.article-card__visual,
.featured-article__visual {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 26%, rgba(255, 255, 255, .5), transparent 14%),
        linear-gradient(135deg, #0b5757, #8ed7c1);
}

.article-card--storage .article-card__visual { background: linear-gradient(135deg, #3e5b91, #b7c8ed); }
.article-card--funding .article-card__visual { background: linear-gradient(135deg, #8f6419, #f1c76e); }
.article-card--geothermal .article-card__visual { background: linear-gradient(135deg, #7b4639, #e28a67); }
.article-card--public .article-card__visual { background: linear-gradient(135deg, #355f88, #93bedf); }
.article-card--lighting .article-card__visual { background: linear-gradient(135deg, #7d5e12, #f3b13d); }
.article-card--news .article-card__visual,
.featured-article--news .featured-article__visual { background: linear-gradient(135deg, #0e4147, #f3a536); }

.article-card__visual::after,
.featured-article__visual::after {
    position: absolute;
    inset: 18% 15% auto auto;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    box-shadow: -50px 64px 0 -24px rgba(255, 255, 255, .22), -105px 8px 0 -35px rgba(255, 255, 255, .35);
    content: "";
}

.article-card__visual span,
.featured-article__visual span {
    position: absolute;
    z-index: 1;
    bottom: 18px;
    left: 20px;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    color: var(--er-ink);
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.article-card__body {
    display: flex;
    flex-direction: column;
    padding: 26px;
}

.article-card__body h3 {
    font-size: 1.45rem;
}

.article-card__body p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.article-card__body .text-link {
    margin-top: auto;
}

.featured-article {
    display: grid;
    grid-template-columns: minmax(310px, .8fr) minmax(0, 1.2fr);
    gap: 0;
    margin-bottom: 28px;
    overflow: hidden;
    border: 1px solid var(--er-border);
    border-radius: 28px;
    background: #fff;
}

.featured-article__visual {
    min-height: 390px;
}

.featured-article > div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(32px, 5vw, 64px);
}

.featured-article h2 {
    font-size: clamp(2rem, 4vw, 3.9rem);
}

.article-page .article-hero {
    padding: clamp(62px, 8vw, 112px) 0;
    background: linear-gradient(135deg, #eaf4f0, #fff1d9);
}

.article-hero__inner {
    max-width: 980px;
}

.article-hero h1 {
    max-width: 960px;
    font-size: clamp(3rem, 6vw, 5.8rem);
}

.article-category {
    display: inline-flex;
    margin: 26px 0 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #dbece7;
    color: var(--er-teal);
    font-size: .72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) minmax(260px, 320px);
    gap: clamp(42px, 7vw, 90px);
    align-items: start;
    padding-top: 64px;
    padding-bottom: 88px;
}

.article-content {
    font-size: 1.08rem;
    line-height: 1.8;
}

.article-content h2 {
    margin-top: 52px;
    font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.article-content li + li {
    margin-top: 10px;
}

.article-lead {
    color: var(--er-ink);
    font-size: 1.3rem;
    font-weight: 550;
    line-height: 1.65;
}

.article-callout {
    margin: 36px 0;
    padding: 26px;
    border-left: 5px solid var(--er-amber);
    border-radius: 0 18px 18px 0;
    background: #fff4df;
}

.article-callout p {
    margin: 8px 0 0;
}

.article-sidebar {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 16px;
}

.share-card,
.article-side-cta {
    padding: 24px;
    border: 1px solid var(--er-border);
    border-radius: 20px;
    background: #fff;
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
}

.share-buttons button {
    min-height: 42px;
    padding: 9px 10px;
    border: 1px solid #ccdad6;
    border-radius: 10px;
    background: #f6f9f7;
    cursor: pointer;
    font-size: .78rem;
    font-weight: 750;
}

.share-buttons button:hover {
    border-color: var(--er-teal);
    color: var(--er-teal);
}

.article-side-cta {
    background: #eaf4f0;
}

.article-side-cta span {
    color: var(--er-teal);
    font-size: .7rem;
    font-weight: 850;
    text-transform: uppercase;
}

.article-source {
    margin-top: 46px;
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(270px, .55fr) minmax(0, 1.45fr);
    gap: 24px;
    align-items: start;
}

.contact-card,
.contact-form {
    border: 1px solid var(--er-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 46px rgba(8, 47, 53, .06);
}

.contact-card {
    position: sticky;
    top: 110px;
    display: grid;
    gap: 12px;
    padding: 30px;
}

.contact-card > span {
    color: var(--er-teal);
    font-size: .72rem;
    font-weight: 850;
    text-transform: uppercase;
}

.contact-card > a:first-of-type {
    font-size: 1.35rem;
    font-weight: 850;
}

.contact-form {
    padding: clamp(26px, 4vw, 42px);
}

.form-message {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 12px;
}

.form-message--success { background: #e4f5ed; color: #176249; }
.form-message--error { background: #fff0ed; color: #9a3425; }

.footer-email {
    display: inline-block;
    margin-top: 8px;
    color: #9ddfc9;
    font-weight: 800;
}

.report-dialog__price small {
    color: #223c3f !important;
    opacity: 1 !important;
}

.report-payment-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cookie-choice {
    align-items: center;
}

.ad-slot {
    margin-top: 28px;
    margin-bottom: 28px;
    padding: 14px;
    border: 1px dashed #c9d6d2;
    border-radius: 14px;
    background: #fbfcfa;
}

.ad-slot__label {
    display: block;
    margin-bottom: 8px;
    color: #788985;
    font-size: .65rem;
    text-align: center;
    text-transform: uppercase;
}

.order-email-status {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0;
}

.order-email-status span {
    padding: 12px;
    border: 1px solid #d9e4e0;
    border-radius: 12px;
    background: #f7faf8;
    font-size: .82rem;
}

.dossier-preview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.dossier-preview > div {
    min-height: 250px;
    padding: 30px;
    border: 1px solid var(--er-border);
    border-radius: 24px;
    background: #fff;
}

.dossier-preview > div > span {
    color: var(--er-teal);
    font-size: .75rem;
    font-weight: 850;
}

@media (max-width: 1120px) {
    .main-nav > a { padding-inline: 9px; font-size: .82rem; }
    .brand__wordmark { width: 300px; }
    .calculator-layout { grid-template-columns: 1fr; }
    .result-panel { position: relative; top: auto; min-height: 0; }
    .map-layout--counties { grid-template-columns: 1fr; }
    .county-map-panel { position: relative; top: auto; }
    .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .technology-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .hero-trust,
    .report-order-note,
    .dossier-preview { grid-template-columns: 1fr; }
    .calculator-directory,
    .funding-catalog,
    .report-listing--catalog { grid-template-columns: 1fr; }
    .source-strip--balanced { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .featured-article { grid-template-columns: 1fr; }
    .featured-article__visual { min-height: 250px; }
    .article-layout { grid-template-columns: 1fr; }
    .article-sidebar { position: relative; top: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .contact-layout { grid-template-columns: 1fr; }
    .contact-card { position: relative; top: auto; }
}

@media (max-width: 720px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .brand__wordmark { width: 255px !important; }
    .home-hero--v16 { padding-top: 62px; }
    .home-hero--v16 h1 { font-size: clamp(2.65rem, 12vw, 4.5rem); }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-trust { margin-top: 30px; }
    .entry-grid,
    .article-grid,
    .technology-grid { grid-template-columns: 1fr; }
    .source-strip--balanced { grid-template-columns: 1fr !important; }
    .source-strip--balanced article { min-height: 0; }
    .calculator-form { padding: 22px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-span-2 { grid-column: auto !important; }
    .toggle-card { grid-template-columns: 1fr; }
    .result-metrics { grid-template-columns: 1fr; padding-inline: 20px; }
    .result-score { margin-inline: 20px; grid-template-columns: 1fr; }
    .result-notes,
    .result-report { margin-inline: 20px; }
    .county-map-card { min-height: 0; padding: 6px; border-radius: 18px; }
    .county-map-panel { padding: 22px; }
    .map-production-grid { grid-template-columns: 1fr; }
    .article-sidebar { grid-template-columns: 1fr; }
    .article-card { min-height: 0; }
    .article-hero h1 { font-size: clamp(2.5rem, 12vw, 4.2rem); }
    .article-layout { padding-top: 38px; }
    .report-payment-box,
    .order-email-status { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 430px) {
    .brand__wordmark { width: 224px !important; }
    .header-inner { min-height: 74px; }
    .home-hero--v16 h1 { letter-spacing: -.055em; }
    .page-hero--compact h1,
    .calculator-page-hero h1 { font-size: 2.65rem; }
    .calculator-directory-card { min-height: 235px; padding: 26px; }
}

.admin-order__files {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    margin: 16px 0;
    padding: 16px;
    border: 1px solid #d8e4e0;
    border-radius: 14px;
    background: #f7faf8;
}

.admin-order__files span {
    color: #657976;
    font-size: .78rem;
}

.admin-order__message {
    margin: 18px 0;
    padding: 20px;
    border: 1px solid #d8e4e0;
    border-radius: 14px;
    background: #fff;
    color: var(--er-ink);
    line-height: 1.7;
}

/* ========================================================================== 
   EnergiaRegenerabila.ro v1.6.2 - corectii tintite
   Pastreaza designul calculatoarelor si clarifica accesul gratuit.
   ========================================================================== */

/* Prima pagina: foloseste si coloana din dreapta, fara a promova pretul in hero. */
.home-hero--v16 .hero-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(350px, .62fr);
    gap: clamp(38px, 5vw, 76px);
    align-items: center;
}

.home-hero--v16 .hero-copy {
    min-width: 0;
}

.home-hero--v16 h1 {
    max-width: 1040px;
    font-size: clamp(3rem, 5.15vw, 5.45rem);
}

.home-hero--v16 .hero-copy > p {
    max-width: 720px;
}

.hero-quickstart {
    position: relative;
    display: grid;
    gap: 22px;
    align-self: center;
    padding: clamp(26px, 3vw, 38px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 30px;
    background: linear-gradient(150deg, #082f35 0%, #0a5554 100%);
    color: #fff;
    box-shadow: 0 28px 70px rgba(8, 47, 53, .18);
}

.hero-quickstart::after {
    position: absolute;
    right: -110px;
    bottom: -130px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(255, 255, 255, .025), 0 0 0 76px rgba(255, 255, 255, .014);
    content: "";
    pointer-events: none;
}

.hero-quickstart > * {
    position: relative;
    z-index: 1;
}

.hero-quickstart__head > span {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(132, 216, 189, .14);
    color: #b8eadb;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-quickstart__head h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(1.75rem, 2.6vw, 2.55rem);
}

.hero-quickstart__head p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .88rem;
    line-height: 1.55;
}

.hero-quickstart__links {
    display: grid;
    gap: 8px;
}

.hero-quickstart__links a {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 10px 12px;
    align-items: center;
    padding: 14px 15px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 15px;
    background: rgba(255, 255, 255, .055);
    color: #fff;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.hero-quickstart__links a:hover {
    transform: translateX(3px);
    border-color: rgba(132, 216, 189, .36);
    background: rgba(255, 255, 255, .09);
}

.hero-quickstart__links span {
    color: #f3b454;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .08em;
}

.hero-quickstart__links strong {
    display: block;
    font-size: .88rem;
}

.hero-quickstart__links em {
    grid-column: 2;
    color: rgba(255, 255, 255, .52);
    font-size: .68rem;
    font-style: normal;
    line-height: 1.35;
}

.hero-quickstart__links b {
    grid-column: 3;
    grid-row: 1 / span 2;
    color: #b8eadb;
    font-size: 1rem;
}

.hero-quickstart > small {
    color: rgba(255, 255, 255, .52);
    font-size: .68rem;
    line-height: 1.45;
}

/* Campul pentru pompa de caldura ramane in designul formularului existent. */
.toggle-card {
    grid-template-columns: minmax(0, 1.25fr) minmax(220px, .75fr);
    gap: 28px;
    min-height: 92px;
    padding: 20px 22px;
}

.toggle-card > span {
    padding-right: 8px;
    line-height: 1.48;
}

.toggle-card select {
    width: 100%;
    min-height: 54px;
    margin: 0;
}

.heatpump-fields {
    margin-top: 0;
}

/* Readuce panoul de rezultate la designul inchis din versiunea anterioara. */
.result-panel {
    position: sticky;
    top: 108px;
    min-height: 620px;
    overflow: hidden;
    border-color: transparent;
    background: #082f35;
    color: #fff;
    box-shadow: 0 24px 64px rgba(8, 47, 53, .18);
}

.result-panel::after {
    position: absolute;
    z-index: 0;
    right: -120px;
    bottom: -160px;
    display: block;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .014);
    content: "";
    pointer-events: none;
}

.result-empty,
.result-content {
    position: relative;
    z-index: 1;
    min-height: 620px;
    padding: 38px;
}

.result-empty {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
}

.result-empty__icon {
    display: grid;
    width: 70px;
    height: 70px;
    margin-bottom: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .06);
    color: #f3a536;
    font-size: 2.3rem;
}

.result-empty h2 {
    max-width: 390px;
    margin-bottom: 13px;
    color: #fff;
    font-size: 2.35rem;
}

.result-empty p {
    max-width: 390px;
    color: rgba(255, 255, 255, .62);
}

.result-content {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.result-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: transparent;
    color: #fff;
}

.result-head > div > span {
    display: block;
    color: #f3a536;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.result-head h2 {
    margin: 5px 0 0;
    color: #fff;
    font-size: 1.8rem;
    line-height: 1.15;
}

.result-status {
    flex: 0 0 auto;
    padding: 8px 11px;
    border-radius: 999px;
    background: rgba(132, 216, 189, .14);
    color: #b8eadb;
    font-size: .68rem;
    font-weight: 850;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.result-score-block {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    padding: 28px 0;
}

.result-score {
    display: grid;
    width: 108px;
    height: 108px;
    margin: 0;
    padding: 0;
    place-items: center;
    border: 8px solid rgba(255, 255, 255, .08);
    border-top-color: #f3a536;
    border-right-color: #84d8bd;
    border-radius: 50%;
    background: transparent;
}

.result-score > span {
    color: #fff;
    font-size: 2rem;
    font-weight: 850;
    line-height: 1;
}

.result-score-copy small {
    color: rgba(255, 255, 255, .5);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
}

.result-score-copy strong {
    display: block;
    margin: 4px 0 6px;
    color: #fff;
    font-size: 1.24rem;
    line-height: 1.25;
}

.result-score-copy p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: .76rem;
    line-height: 1.5;
}

.result-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
}

.result-metric {
    display: block;
    min-height: 108px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
}

.result-metric > span {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, .5);
    font-size: .65rem;
    font-weight: 800;
    letter-spacing: .045em;
    text-transform: uppercase;
}

.result-metric strong {
    display: block;
    color: #fff;
    font-size: 1.12rem;
    line-height: 1.22;
}

.result-metric small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, .48);
    font-size: .64rem;
    line-height: 1.4;
}

.result-notes {
    display: grid;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    border: 0;
    background: transparent;
}

.result-note {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    color: rgba(255, 255, 255, .70);
    font-size: .72rem;
    line-height: 1.48;
}

.result-note i {
    display: grid;
    width: 21px;
    height: 21px;
    place-items: center;
    border-radius: 7px;
    background: rgba(243, 165, 54, .14);
    color: #f3b454;
    font-size: .65rem;
    font-style: normal;
    font-weight: 850;
}

.result-report {
    margin: auto 0 0;
    padding: 19px;
    border: 1px dashed rgba(255, 255, 255, .18);
    border-radius: 15px;
    background: rgba(255, 255, 255, .04);
    color: #fff;
}

.result-report__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.result-report__top span {
    color: #f3b454;
    font-size: .65rem;
    font-weight: 850;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.result-report__top strong {
    color: #fff;
    font-size: .84rem;
}

.result-report h3 {
    margin: 0 0 7px;
    color: #fff;
    font-size: .92rem;
}

.result-report > p {
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .58);
    font-size: .69rem;
    line-height: 1.5;
}

.result-report ul {
    display: grid;
    gap: 5px;
    margin: 0 0 14px;
    padding-left: 18px;
    color: rgba(255, 255, 255, .66);
    font-size: .66rem;
}

.result-report > small {
    display: block;
    margin-top: 11px;
    color: rgba(255, 255, 255, .43);
    font-size: .61rem;
    line-height: 1.42;
}

.result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.result-actions button,
.result-actions a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(255, 255, 255, .07);
    color: #fff;
    cursor: pointer;
    font-size: .68rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
}

.result-actions button:first-child {
    border-color: transparent;
    background: #f3a536;
    color: #082f35;
}

@media (max-width: 1120px) {
    .home-hero--v16 .hero-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-hero--v16 h1 {
        max-width: 1120px;
    }

    .hero-quickstart {
        grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
        align-items: center;
    }

    .hero-quickstart > small {
        grid-column: 1 / -1;
    }

    .result-panel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 720px) {
    .hero-quickstart {
        grid-template-columns: 1fr;
        padding: 24px;
        border-radius: 24px;
    }

    .hero-quickstart > small {
        grid-column: auto;
    }

    .toggle-card {
        grid-template-columns: 1fr;
        gap: 12px;
        min-height: 0;
        padding: 18px;
    }

    .toggle-card > span {
        padding-right: 0;
    }

    .result-empty,
    .result-content {
        min-height: 0;
        padding: 28px 22px;
    }

    .result-head {
        flex-direction: column;
        gap: 14px;
    }

    .result-score-block {
        grid-template-columns: 96px minmax(0, 1fr);
        gap: 17px;
    }

    .result-score {
        width: 92px;
        height: 92px;
    }

    .result-metrics {
        grid-template-columns: 1fr;
    }

    .result-actions {
        grid-template-columns: 1fr;
    }
}

/* ======================================================================
   EnergiaRegenerabila.ro v1.6.2 - corectii strict pentru calculatoare
   Fara redesign: panou fix in pagina, nuanta corecta, scor centrat si
   spatiere corecta intre optiunea pompei de caldura si buton.
   ====================================================================== */

.calculator-layout {
    align-items: start;
}

.result-panel {
    position: relative !important;
    top: auto !important;
    align-self: start;
    border-color: rgba(20, 46, 52, .14);
    background: #142e34 !important;
    box-shadow: 0 20px 48px rgba(20, 46, 52, .14);
}

.result-score {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr !important;
    align-items: center !important;
    justify-items: center !important;
    place-items: center !important;
    gap: 0 !important;
    box-sizing: border-box;
}

.result-score > span {
    grid-area: 1 / 1;
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    color: #fff;
    line-height: 1;
    text-align: center;
    transform: none;
}

.toggle-card {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 30px;
    min-height: 0;
    padding: 21px 24px;
}

.toggle-card > span {
    padding-right: 0;
    line-height: 1.42;
}

.toggle-card select {
    min-height: 54px;
}

.calculator-form > .button--full {
    margin-top: 22px;
}

@media (max-width: 720px) {
    .toggle-card {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 18px;
    }

    .calculator-form > .button--full {
        margin-top: 18px;
    }
}

/* ======================================================================
   EnergiaRegenerabila.ro v1.6.3 - paleta petrol pentru zonele de calcul
   Schimbare strict vizuala: carduri inchise si butoane principale.
   ====================================================================== */

:root {
    --calculator-dark: #08393d;
    --calculator-dark-hover: #0a4d50;
    --calculator-dark-accent: #0b5758;
}

.hero-quickstart,
.result-panel {
    background:
        radial-gradient(circle at 102% 102%, rgba(132, 216, 189, .12), transparent 34%),
        linear-gradient(150deg, var(--calculator-dark) 0%, var(--calculator-dark-accent) 100%) !important;
    border-color: rgba(8, 57, 61, .16);
    box-shadow: 0 24px 58px rgba(8, 57, 61, .17);
}

.hero-quickstart::after,
.result-panel::after {
    border-color: rgba(255, 255, 255, .085);
    box-shadow:
        0 0 0 42px rgba(255, 255, 255, .027),
        0 0 0 84px rgba(255, 255, 255, .015);
}

.button--primary,
.calculator-form > .button--full {
    background: var(--calculator-dark) !important;
    color: #fff;
    box-shadow: 0 12px 27px rgba(8, 57, 61, .22);
}

.button--primary:hover,
.button--primary:focus-visible,
.calculator-form > .button--full:hover,
.calculator-form > .button--full:focus-visible {
    background: var(--calculator-dark-hover) !important;
    box-shadow: 0 16px 34px rgba(8, 57, 61, .26);
}

/* EnergiaRegenerabila.ro v1.6.6 - sigle furnizate, transparente, fara card */
.brand .brand__wordmark,
.admin-login-card .brand__wordmark,
.admin-header .brand__wordmark {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: none;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    object-fit: contain;
}

.brand--primary {
    flex: 0 0 auto;
}

.brand--primary .brand__wordmark {
    width: 220px;
}

.brand--footer .brand__wordmark {
    width: 260px;
}

.brand--standalone .brand__wordmark,
.admin-login-card .brand__wordmark {
    width: 250px;
}

.admin-header .brand__wordmark {
    width: 220px;
}

@media (max-width: 1120px) {
    .brand--primary .brand__wordmark {
        width: 205px;
    }

    .admin-header .brand__wordmark {
        width: 205px;
    }
}

@media (max-width: 680px) {
    .brand--primary .brand__wordmark {
        width: 180px;
    }

    .brand--footer .brand__wordmark {
        width: 235px;
    }

    .brand--standalone .brand__wordmark,
    .admin-login-card .brand__wordmark {
        width: 220px;
    }

    .admin-header .brand__wordmark {
        width: 185px;
    }
}

@media (max-width: 390px) {
    .brand--primary .brand__wordmark {
        width: 165px;
    }
}

/* ======================================================================
   EnergiaRegenerabila.ro v1.6.7 - corectie spatiere pagina articol
   Elimina gap-ul mostenit din grila hero si compacteaza antetul editorial.
   ====================================================================== */
.article-page .article-hero {
    padding: 58px 0 70px;
}

.article-page .article-hero__inner {
    display: block;
    max-width: 980px;
}

.article-page .breadcrumb {
    margin: 0 0 26px;
}

.article-page .article-category {
    width: fit-content;
    margin: 0 0 20px;
}

.article-page .article-hero h1 {
    margin: 0 0 24px;
}

.article-page .article-hero__inner > p {
    max-width: 820px;
    margin: 0;
}

.article-page .article-hero .article-meta {
    margin: 24px 0 0;
}

@media (max-width: 720px) {
    .article-page .article-hero {
        padding: 38px 0 48px;
    }

    .article-page .breadcrumb {
        margin-bottom: 20px;
    }

    .article-page .article-category {
        margin-bottom: 16px;
    }

    .article-page .article-hero h1 {
        margin-bottom: 18px;
    }

    .article-page .article-hero .article-meta {
        margin-top: 20px;
    }
}

/* ======================================================================
   EnergiaRegenerabila.ro v1.6.8 - articole: cache + spatiere + thumbnails
   ====================================================================== */

/* Antetul paginii de articol: o singura coloana, fara coloana goala si fara
   spatii verticale mostenite din versiunile anterioare. */
.article-page .article-hero {
    padding: 40px 0 54px !important;
}

.article-page .article-hero__inner {
    display: flex !important;
    width: 100% !important;
    max-width: 940px !important;
    grid-template-columns: none !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    flex-direction: column !important;
    gap: 0 !important;
}

.article-page .breadcrumb {
    margin: 0 0 18px !important;
}

.article-page .article-category {
    display: inline-flex !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: max-content !important;
    align-self: flex-start !important;
    margin: 0 0 18px !important;
    padding: 7px 11px !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
}

.article-page .article-hero h1 {
    max-width: 900px !important;
    margin: 0 0 18px !important;
    font-size: clamp(2.7rem, 5.2vw, 5.15rem) !important;
    line-height: .98 !important;
}

.article-page .article-hero__inner > p {
    max-width: 820px !important;
    margin: 0 0 18px !important;
}

.article-page .article-hero .article-meta {
    margin: 0 !important;
}

/* Reset complet al etichetei din thumbnail. Selectori mai vechi setau
   simultan top+bottom si width+height, ceea ce intindea eticheta vertical. */
.articles-section .article-card__visual > span,
.articles-section .featured-article__visual > span,
.editorial-preview .article-card__visual > span {
    position: absolute !important;
    top: 20px !important;
    right: auto !important;
    bottom: auto !important;
    left: 20px !important;
    display: inline-flex !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: calc(100% - 40px) !important;
    place-items: unset !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 7px 11px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .9) !important;
    color: var(--er-ink) !important;
    font-size: .68rem !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    letter-spacing: .07em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    backdrop-filter: blur(8px);
}

/* Featured card: pastreaza thumbnail-ul curat si evita orice deformare a
   continutului decorativ. */
.articles-section .featured-article__visual {
    min-height: 390px;
}

@media (max-width: 720px) {
    .article-page .article-hero {
        padding: 30px 0 42px !important;
    }

    .article-page .breadcrumb {
        margin-bottom: 15px !important;
    }

    .article-page .article-category {
        margin-bottom: 15px !important;
    }

    .article-page .article-hero h1 {
        margin-bottom: 16px !important;
        font-size: clamp(2.35rem, 11vw, 3.85rem) !important;
    }

    .article-page .article-hero__inner > p {
        margin-bottom: 16px !important;
    }

    .articles-section .article-card__visual > span,
    .articles-section .featured-article__visual > span,
    .editorial-preview .article-card__visual > span {
        top: 16px !important;
        left: 16px !important;
        max-width: calc(100% - 32px) !important;
    }
}


/* EnergiaRegenerabila.ro v1.7.0 - parc fotovoltaic autoconsum/productie + teren iluminat public */

/* EnergiaRegenerabila.ro v1.7.0 - stocare pentru parcuri FV + rapoarte */
[data-storage-field][hidden] {
    display: none !important;
}

/* EnergiaRegenerabila.ro v1.7.1 - BESS implicit 50 + rotunjire teren + articol UAT */

/* ======================================================================
   EnergiaRegenerabila.ro v1.8.0 - conturi utilizatori si Dosarul meu
   ====================================================================== */
.account-auth-page {
    padding: 72px 0 92px;
    background: linear-gradient(180deg, #f8f5ec 0%, #fff 100%);
}
.account-auth-shell {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, .72fr);
    gap: 72px;
    align-items: center;
    max-width: 1120px;
}
.account-auth-shell--single {
    display: block;
    max-width: 560px;
}
.account-auth-copy h1 {
    max-width: 650px;
    margin: 12px 0 18px;
    font-size: clamp(2.8rem, 5vw, 5.5rem);
    line-height: .98;
}
.account-auth-copy > p {
    max-width: 620px;
    color: var(--er-muted);
    font-size: 1.06rem;
}
.account-auth-benefits {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}
.account-auth-benefits span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
}
.account-auth-benefits span::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #1bb397;
    box-shadow: 0 0 0 5px rgba(27, 179, 151, .12);
}
.account-auth-card {
    display: grid;
    gap: 18px;
    padding: 32px;
    border: 1px solid rgba(8,57,61,.11);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(8,57,61,.09);
}
.account-auth-card h1 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.2rem);
}
.account-auth-card > p {
    margin: -8px 0 4px;
    color: var(--er-muted);
}
.account-auth-card label:not(.consent-row),
.account-settings-form label,
.account-upload label {
    display: grid;
    gap: 8px;
}
.account-auth-card label > span,
.account-settings-form label > span,
.account-upload label > span {
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .025em;
}
.account-auth-card input,
.account-auth-card select,
.account-settings-form input,
.account-settings-form select,
.account-upload input[type="file"] {
    min-height: 48px;
    width: 100%;
    border: 1px solid rgba(8,57,61,.18);
    border-radius: 12px;
    background: #fff;
    padding: 11px 13px;
    color: var(--er-ink);
    font: inherit;
}
.account-auth-card input:focus,
.account-auth-card select:focus,
.account-settings-form input:focus,
.account-settings-form select:focus {
    outline: 3px solid rgba(27,179,151,.14);
    border-color: #1bb397;
}
.account-auth-card label small,
.account-settings-form label small,
.account-upload small {
    color: var(--er-muted);
    font-size: .75rem;
}
.account-auth-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    color: var(--er-muted);
    font-size: .85rem;
}
.account-auth-links a {
    color: #08696a;
    font-weight: 800;
}

.account-hero {
    padding: 52px 0 36px;
    background: #f8f5ec;
    border-bottom: 1px solid rgba(8,57,61,.08);
}
.account-hero__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}
.account-hero h1 {
    margin: 8px 0 5px;
    font-size: clamp(2.4rem, 4.5vw, 4.7rem);
    line-height: 1;
}
.account-hero p {
    margin: 0;
    color: var(--er-muted);
}
.account-dashboard {
    padding-top: 34px;
}
.account-dashboard .form-message {
    margin-bottom: 20px;
}
.account-verification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px;
    margin-bottom: 22px;
    border: 1px solid rgba(216,138,34,.25);
    border-radius: 16px;
    background: #fff9ee;
}
.account-verification strong {
    display: block;
    margin-bottom: 4px;
}
.account-verification p {
    margin: 0;
    color: var(--er-muted);
    font-size: .88rem;
}
.account-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    margin-bottom: 26px;
    padding: 5px;
    border: 1px solid rgba(8,57,61,.09);
    border-radius: 15px;
    background: #f7f8f5;
}
.account-tabs a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
    padding: 10px 14px;
    border-radius: 10px;
    color: var(--er-muted);
    font-size: .82rem;
    font-weight: 800;
}
.account-tabs a span {
    display: inline-grid;
    min-width: 22px;
    min-height: 22px;
    place-items: center;
    border-radius: 999px;
    background: rgba(8,57,61,.08);
    font-size: .7rem;
}
.account-tabs a.is-active {
    background: #08393d;
    color: #fff;
}
.account-tabs a.is-active span {
    background: rgba(255,255,255,.15);
}
.account-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0,1fr));
    gap: 18px;
    margin-bottom: 22px;
}
.account-stat-grid article,
.account-panel {
    border: 1px solid rgba(8,57,61,.1);
    border-radius: 18px;
    background: #fff;
}
.account-stat-grid article {
    display: grid;
    gap: 7px;
    padding: 22px;
}
.account-stat-grid article > span {
    color: var(--er-muted);
    font-size: .8rem;
    font-weight: 750;
}
.account-stat-grid article > strong {
    color: #08393d;
    font-size: 2.35rem;
    line-height: 1;
}
.account-stat-grid article > a {
    margin-top: 4px;
    color: #087a75;
    font-size: .8rem;
    font-weight: 850;
}
.account-overview-grid,
.account-doc-grid,
.account-settings-grid {
    display: grid;
    grid-template-columns: minmax(0,1.35fr) minmax(300px,.8fr);
    gap: 22px;
}
.account-settings-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
}
.account-settings-grid .account-danger {
    grid-column: 1 / -1;
}
.account-panel {
    padding: 24px;
}
.account-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}
.account-panel__head small {
    display: block;
    margin-bottom: 4px;
    color: #138e81;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.account-panel__head h2 {
    margin: 0;
    font-size: 1.45rem;
}
.account-panel__head > a:not(.button) {
    color: #087a75;
    font-size: .82rem;
    font-weight: 850;
}
.account-list,
.account-status-list {
    display: grid;
    gap: 0;
}
.account-list article,
.account-status-list > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-top: 1px solid rgba(8,57,61,.08);
}
.account-list article:first-child,
.account-status-list > div:first-child {
    border-top: 0;
}
.account-list article div {
    display: grid;
    gap: 3px;
}
.account-list article small,
.account-status-list span {
    color: var(--er-muted);
    font-size: .76rem;
}
.account-list article > span {
    font-weight: 900;
    color: #08393d;
}
.account-status-list strong.is-ok { color: #128568; }
.account-status-list strong.is-warn { color: #b76e09; }
.account-empty {
    padding: 30px 18px;
    border: 1px dashed rgba(8,57,61,.18);
    border-radius: 14px;
    text-align: center;
    color: var(--er-muted);
}
.account-empty p { margin-top: 0; }

.saved-calculations {
    display: grid;
    gap: 18px;
}
.saved-calculation {
    padding: 20px;
    border: 1px solid rgba(8,57,61,.1);
    border-radius: 16px;
    background: #fbfcfa;
}
.saved-calculation > header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}
.saved-calculation > header > div > span {
    color: #138e81;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
}
.saved-calculation h3 {
    margin: 4px 0;
    font-size: 1.2rem;
}
.saved-calculation header small {
    color: var(--er-muted);
}
.saved-calculation > header > strong {
    align-self: flex-start;
    color: #08393d;
    font-size: 1.9rem;
}
.saved-calculation > header > strong small {
    font-size: .65rem;
}
.saved-calculation__metrics {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 10px;
}
.saved-calculation__metrics > div {
    display: grid;
    gap: 3px;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
}
.saved-calculation__metrics span,
.saved-calculation__metrics small {
    color: var(--er-muted);
    font-size: .72rem;
}
.saved-calculation details {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(8,57,61,.08);
}
.saved-calculation summary {
    cursor: pointer;
    font-weight: 800;
}
.saved-calculation details p {
    color: var(--er-muted);
    font-size: .82rem;
}
.account-delete-link {
    margin-top: 15px;
    border: 0;
    background: none;
    color: #a44338;
    padding: 0;
    font: inherit;
    font-size: .78rem;
    font-weight: 800;
    cursor: pointer;
}

.account-upload {
    display: grid;
    gap: 14px;
}
.document-list {
    display: grid;
    gap: 10px;
}
.document-list article {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(8,57,61,.08);
}
.document-list article:first-child { border-top: 0; }
.document-icon {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 11px;
    background: #eef6f2;
    color: #087a75;
    font-size: .65rem;
    font-weight: 900;
}
.document-list article > div:nth-child(2) {
    display: grid;
    gap: 3px;
}
.document-list article small {
    color: var(--er-muted);
    font-size: .72rem;
}
.document-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}
.document-actions a,
.document-actions button {
    border: 0;
    background: none;
    color: #087a75;
    padding: 0;
    font: inherit;
    font-size: .74rem;
    font-weight: 850;
    cursor: pointer;
}
.document-actions button { color: #a44338; }

.account-orders {
    display: grid;
    gap: 14px;
}
.account-orders article {
    display: grid;
    grid-template-columns: minmax(0,1.5fr) repeat(3,minmax(110px,.5fr)) auto;
    gap: 14px;
    align-items: center;
    padding: 17px;
    border: 1px solid rgba(8,57,61,.1);
    border-radius: 14px;
    background: #fbfcfa;
}
.account-orders header span,
.account-orders article > div span {
    display: block;
    margin-bottom: 3px;
    color: var(--er-muted);
    font-size: .7rem;
}
.account-orders h3 {
    margin: 0;
    font-size: 1rem;
}
.account-orders article > div strong {
    font-size: .82rem;
}
.account-settings-form {
    display: grid;
    gap: 15px;
}
.account-inline-action {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(8,57,61,.08);
}
.account-danger {
    border-color: rgba(164,67,56,.2);
    background: #fffafa;
}
.account-danger > p {
    color: var(--er-muted);
    max-width: 760px;
}
.button--danger {
    background: #a44338;
    border-color: #a44338;
    color: #fff;
}
.button--danger:hover { background: #8e372f; }

.result-save-account {
    display: grid;
    gap: 8px;
    margin: 18px 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.result-save-account .button {
    justify-self: start;
}
.result-save-account small {
    color: rgba(255,255,255,.65);
    font-size: .73rem;
}
.result-save-account .button--secondary {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.18);
    color: #fff;
}
.result-save-account .button--secondary:hover {
    background: rgba(255,255,255,.16);
}
.result-save-account .button.is-saved {
    background: #1b9d83;
    border-color: #1b9d83;
}
.admin-user-status--disabled {
    background: #fff1ef !important;
    color: #a44338 !important;
}
.admin-user-status--active {
    background: #edf8f3 !important;
    color: #128568 !important;
}

@media (max-width: 1000px) {
    .account-auth-shell,
    .account-overview-grid,
    .account-doc-grid,
    .account-settings-grid {
        grid-template-columns: 1fr;
    }
    .account-settings-grid .account-danger { grid-column: auto; }
    .account-orders article {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
    .account-orders article > header,
    .account-orders article > a { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
    .account-auth-page { padding: 42px 0 60px; }
    .account-auth-shell { gap: 30px; }
    .account-auth-card { padding: 22px; border-radius: 18px; }
    .account-hero { padding: 38px 0 28px; }
    .account-hero__inner { align-items: flex-start; flex-direction: column; }
    .account-stat-grid { grid-template-columns: 1fr; }
    .account-verification { align-items: flex-start; flex-direction: column; }
    .saved-calculation__metrics { grid-template-columns: 1fr; }
    .document-list article { grid-template-columns: auto minmax(0,1fr); }
    .document-actions { grid-column: 2; }
    .account-orders article { grid-template-columns: 1fr; }
    .account-orders article > header,
    .account-orders article > a { grid-column: auto; }
}

/* v1.8.1 - denumire calcule salvate */
.save-calculation-dialog {
    width: min(520px, calc(100vw - 28px));
    max-width: 520px;
    padding: 0;
    border: 0;
    border-radius: 20px;
    background: transparent;
    color: var(--er-ink);
}
.save-calculation-dialog::backdrop {
    background: rgba(5, 31, 34, .54);
    backdrop-filter: blur(3px);
}
.save-calculation-dialog__shell {
    position: relative;
    display: grid;
    gap: 16px;
    padding: 28px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(5,31,34,.22);
}
.save-calculation-dialog__shell h2 {
    margin: 0;
    font-size: 1.65rem;
}
.save-calculation-dialog__shell > p {
    margin: -6px 0 2px;
    color: var(--er-muted);
    line-height: 1.6;
}
.save-calculation-dialog__shell label {
    display: grid;
    gap: 8px;
}
.save-calculation-dialog__shell label > span {
    font-size: .8rem;
    font-weight: 850;
}
.save-calculation-dialog__shell input {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid rgba(8,57,61,.18);
    border-radius: 11px;
    background: #fbfcfa;
    color: var(--er-ink);
    font: inherit;
}
.save-calculation-dialog__shell input:focus {
    outline: 2px solid rgba(19,142,129,.2);
    border-color: #138e81;
}
.save-calculation-dialog__type {
    color: var(--er-muted);
    font-size: .75rem;
}
.save-calculation-dialog__actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 2px;
}
.saved-calculation__rename {
    margin: -4px 0 18px;
    padding: 14px;
    border-radius: 13px;
    background: rgba(8,57,61,.035);
}
.saved-calculation__rename label {
    display: grid;
    gap: 7px;
}
.saved-calculation__rename label > span {
    color: var(--er-muted);
    font-size: .72rem;
    font-weight: 800;
}
.saved-calculation__rename label > div {
    display: grid;
    grid-template-columns: minmax(0,1fr) auto;
    gap: 9px;
}
.saved-calculation__rename input {
    min-width: 0;
    min-height: 42px;
    padding: 9px 12px;
    border: 1px solid rgba(8,57,61,.14);
    border-radius: 10px;
    background: #fff;
    color: var(--er-ink);
    font: inherit;
}
@media (max-width: 620px) {
    .save-calculation-dialog__shell { padding: 22px; }
    .save-calculation-dialog__actions { display: grid; grid-template-columns: 1fr; }
    .save-calculation-dialog__actions .button { width: 100%; }
    .saved-calculation__rename label > div { grid-template-columns: 1fr; }
    .saved-calculation__rename .button { width: 100%; }
}

/* v1.9.0 - pagini SEO, energie azi si distribuire rezultate */
.home-live-strip {
    background: #08393d;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.home-live-strip__inner {
    min-height: 112px;
    display: grid;
    grid-template-columns: 1.05fr 1.8fr auto;
    align-items: center;
    gap: 34px;
}
.home-live-strip__title { display: grid; gap: 1px; }
.home-live-strip__title > span { color: #78bca9; font-size: .72rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.home-live-strip__title > strong { font-size: 1.08rem; }
.home-live-strip__title > small { color: rgba(255,255,255,.62); font-size: .72rem; }
.home-live-strip__metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; }
.home-live-strip__metrics > div { padding: 10px 16px; border-left: 1px solid rgba(255,255,255,.13); display: grid; gap: 2px; }
.home-live-strip__metrics span { color: rgba(255,255,255,.62); font-size: .72rem; }
.home-live-strip__metrics strong { font-size: 1.15rem; }
.home-live-strip__inner > a { color: #fff; font-weight: 800; white-space: nowrap; }
.home-live-strip__inner > a span { color: var(--orange); }

.seo-hubs { padding-top: 66px; }
.seo-hub-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.seo-hub-grid > a {
    position: relative; overflow: hidden; min-height: 220px; padding: 28px;
    border: 1px solid rgba(8,57,61,.09); border-radius: 22px; background: #fff; box-shadow: var(--shadow-small);
    display: flex; flex-direction: column; align-items: flex-start;
}
.seo-hub-grid > a::after { content:""; position:absolute; width:170px; height:170px; border-radius:50%; right:-72px; bottom:-86px; background:rgba(62,143,130,.09); }
.seo-hub-grid > a > span { color: var(--teal); font-size:.75rem; font-weight:850; text-transform:uppercase; letter-spacing:.06em; }
.seo-hub-grid h3 { margin: 10px 0 8px; font-size: 1.45rem; }
.seo-hub-grid p { max-width: 570px; color: var(--ink-soft); }
.seo-hub-grid strong { margin-top:auto; color:#08766e; }

.energy-today-hero { background: linear-gradient(135deg, #f3f1e9 0%, #e8f1ed 100%); }
.energy-today-section { padding-top: 46px; }
.energy-today-head { display:flex; justify-content:space-between; align-items:center; gap:18px; margin-bottom:18px; }
.energy-today-head > div { display:grid; grid-template-columns:auto auto; align-items:center; column-gap:9px; }
.energy-today-head small { grid-column:2; color:var(--ink-soft); font-size:.75rem; }
.live-dot { width:9px; height:9px; border-radius:50%; background:#18a889; box-shadow:0 0 0 5px rgba(24,168,137,.12); }
.energy-live-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:14px; }
.energy-live-grid article { min-height:164px; padding:24px; border-radius:20px; background:#08393d; color:#fff; display:flex; flex-direction:column; }
.energy-live-grid article:nth-child(2) { background:#0a4b4e; }
.energy-live-grid article:nth-child(3) { background:#31515a; }
.energy-live-grid article:nth-child(4) { background:#3e8f82; }
.energy-live-grid span { color:rgba(255,255,255,.7); font-size:.76rem; font-weight:780; }
.energy-live-grid strong { margin:9px 0 4px; font-size:2rem; letter-spacing:-.03em; }
.energy-live-grid small { margin-top:auto; color:rgba(255,255,255,.64); line-height:1.35; }
.energy-mix { margin-top:44px; }
.energy-mix-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; }
.energy-mix-grid article { padding:18px; border-radius:16px; background:#fff; border:1px solid rgba(8,57,61,.08); display:grid; gap:6px; }
.energy-mix-grid span { color:var(--ink-soft); font-size:.75rem; }
.energy-mix-grid strong { font-size:1.15rem; }
.energy-source-box { margin-top:22px; padding:17px 20px; border-radius:15px; background:#fff; border:1px solid rgba(8,57,61,.08); display:flex; justify-content:space-between; gap:18px; align-items:center; }
.energy-source-box > div { display:grid; gap:2px; }
.energy-source-box span { color:var(--ink-soft); font-size:.78rem; }
.energy-source-box a { color:#08766e; font-weight:800; }
.info-grid--three { grid-template-columns:repeat(3,minmax(0,1fr)); }

.county-directory-summary { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:12px; margin-bottom:26px; }
.county-directory-summary > div { padding:18px 20px; background:#fff; border:1px solid rgba(8,57,61,.08); border-radius:16px; display:grid; gap:3px; }
.county-directory-summary span { color:var(--ink-soft); font-size:.75rem; }
.county-directory-summary strong { font-size:1.15rem; }
.county-seo-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:13px; }
.county-seo-grid > a { min-height:180px; padding:20px; border-radius:18px; background:#fff; border:1px solid rgba(8,57,61,.08); display:flex; flex-direction:column; transition:.18s ease; }
.county-seo-grid > a:hover { transform:translateY(-2px); box-shadow:var(--shadow-small); }
.county-seo-grid > a > span { color:var(--teal); font-size:.72rem; font-weight:800; }
.county-seo-grid h2 { margin:6px 0 9px; font-size:1.2rem; }
.county-seo-grid > a > strong { color:#08393d; }
.county-seo-grid p { margin:4px 0 0; color:var(--ink-soft); font-size:.82rem; }
.county-seo-grid em { margin-top:auto; padding-top:14px; color:#08766e; font-size:.8rem; font-style:normal; font-weight:800; }

.county-page-hero,.size-page-hero { padding:54px 0 46px; background:linear-gradient(135deg,#f3f1e9,#e6f0eb); }
.county-page-hero h1,.size-page-hero h1 { max-width:850px; margin:11px 0 14px; font-size:clamp(2rem,4vw,3.4rem); line-height:1.05; letter-spacing:-.04em; }
.county-page-hero p,.size-page-hero p { max-width:840px; color:var(--ink-soft); font-size:1.03rem; }
.county-kpis,.size-kpis { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:12px; margin-bottom:40px; }
.size-kpis { grid-template-columns:repeat(3,minmax(0,1fr)); }
.county-kpis article,.size-kpis article { min-height:132px; padding:20px; border-radius:18px; background:#08393d; color:#fff; display:flex; flex-direction:column; }
.county-kpis article:nth-child(even),.size-kpis article:nth-child(even) { background:#0d5052; }
.county-kpis span,.size-kpis span { color:rgba(255,255,255,.68); font-size:.72rem; }
.county-kpis strong,.size-kpis strong { margin-top:8px; font-size:1.75rem; line-height:1.1; }
.county-kpis small,.size-kpis small { margin-top:auto; color:rgba(255,255,255,.62); }
.seo-content-grid { display:grid; grid-template-columns:minmax(0,1.75fr) minmax(270px,.65fr); gap:28px; align-items:start; margin:30px 0 48px; }
.seo-content-grid h2 { margin-bottom:16px; }
.solar-table { width:100%; border-collapse:separate; border-spacing:0; overflow:hidden; background:#fff; border:1px solid rgba(8,57,61,.08); border-radius:16px; }
.solar-table th,.solar-table td { padding:13px 15px; text-align:left; border-bottom:1px solid rgba(8,57,61,.07); font-size:.86rem; }
.solar-table thead th { background:#eef3ef; color:#31515a; font-size:.72rem; text-transform:uppercase; letter-spacing:.04em; }
.solar-table tbody tr:last-child th,.solar-table tbody tr:last-child td { border-bottom:0; }
.solar-table tbody th { color:#08393d; }
.solar-table a { color:#08766e; text-decoration:underline; text-underline-offset:3px; }
.seo-side-card { padding:24px; border-radius:20px; background:#fff; border:1px solid rgba(8,57,61,.08); box-shadow:var(--shadow-small); }
.seo-side-card > span { color:var(--teal); font-size:.72rem; font-weight:850; text-transform:uppercase; letter-spacing:.06em; }
.seo-side-card h3 { margin:9px 0; font-size:1.35rem; }
.seo-side-card p { color:var(--ink-soft); }
.county-editorial { max-width:880px; margin:0 auto 48px; }
.county-editorial h2 { font-size:1.8rem; }
.county-editorial p { color:var(--ink-soft); font-size:1rem; }
.monthly-section { margin:44px 0; padding:28px; border-radius:22px; background:#fff; border:1px solid rgba(8,57,61,.08); }
.monthly-bars { display:grid; grid-template-columns:repeat(12,minmax(34px,1fr)); align-items:end; gap:8px; min-height:210px; margin:20px 0 10px; }
.monthly-bars > div { height:190px; display:grid; grid-template-rows:auto 1fr auto; gap:7px; align-items:end; text-align:center; }
.monthly-bars span,.monthly-bars strong { font-size:.68rem; }
.monthly-bars i { width:100%; height:var(--bar); min-height:5px; border-radius:7px 7px 2px 2px; background:linear-gradient(180deg,#3e8f82,#08393d); }
.monthly-section > small { color:var(--ink-soft); }
.county-faq { max-width:900px; margin:50px auto; }
.county-faq details { border-bottom:1px solid rgba(8,57,61,.1); padding:15px 0; }
.county-faq summary { cursor:pointer; font-weight:800; }
.county-faq p { padding-top:10px; color:var(--ink-soft); }
.related-links { margin-top:50px; }
.related-links > div { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; }
.related-links a { padding:15px 17px; border-radius:13px; background:#fff; border:1px solid rgba(8,57,61,.08); display:flex; justify-content:space-between; gap:10px; font-weight:800; }
.related-links a span { color:var(--ink-soft); font-size:.72rem; font-weight:600; }

.solar-size-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:16px; }
.solar-size-grid > a { min-height:230px; padding:25px; border-radius:20px; background:#fff; border:1px solid rgba(8,57,61,.08); display:flex; flex-direction:column; box-shadow:0 10px 30px rgba(8,57,61,.04); }
.solar-size-grid > a > span { color:var(--teal); font-size:.78rem; font-weight:850; }
.solar-size-grid h2 { margin:8px 0 7px; font-size:1.4rem; }
.solar-size-grid p { color:var(--ink-soft); }
.solar-size-grid small { margin-top:auto; color:var(--ink-soft); }
.solar-size-grid strong { margin-top:12px; color:#08766e; }
.size-selector { margin:0 0 40px; padding:24px; border-radius:20px; background:#08393d; color:#fff; display:grid; grid-template-columns:1.2fr .85fr 1fr; gap:24px; align-items:end; }
.size-selector > div:first-child span { color:#78bca9; font-size:.72rem; font-weight:850; text-transform:uppercase; }
.size-selector h2 { margin:5px 0 0; }
.size-selector label { display:grid; gap:7px; }
.size-selector label > span { color:rgba(255,255,255,.7); font-size:.75rem; }
.size-selector select { min-height:46px; border:0; border-radius:11px; padding:0 12px; background:#fff; color:#12343b; }
.size-selector__result { display:grid; gap:2px; padding-left:20px; border-left:1px solid rgba(255,255,255,.18); }
.size-selector__result span,.size-selector__result small { color:rgba(255,255,255,.68); font-size:.72rem; }
.size-selector__result strong { font-size:1.35rem; }

.result-share-card { margin-top:16px; padding:16px 18px; border:1px solid rgba(255,255,255,.13); border-radius:14px; display:flex; justify-content:space-between; gap:16px; align-items:center; }
.result-share-card > div:first-child { display:grid; gap:2px; }
.result-share-card span { font-weight:800; }
.result-share-card small { color:rgba(255,255,255,.64); }
.result-share-actions { display:flex; gap:7px; flex-wrap:wrap; justify-content:flex-end; }
.result-share-actions button { min-height:36px; padding:7px 10px; border:1px solid rgba(255,255,255,.2); border-radius:9px; background:rgba(255,255,255,.08); color:#fff; cursor:pointer; font-size:.75rem; font-weight:800; }
.result-share-actions button:hover { background:rgba(255,255,255,.15); }
.result-share-actions button:disabled { opacity:.5; cursor:wait; }

.shared-result-page { padding:58px 0 80px; background:linear-gradient(180deg,#eef3ef,#f7f8f4); }
.shared-result-shell { max-width:900px; padding:34px; border-radius:24px; background:#fff; border:1px solid rgba(8,57,61,.08); box-shadow:var(--shadow); }
.shared-result-shell > h1 { margin:9px 0 10px; font-size:clamp(2rem,4vw,3.2rem); }
.shared-result-shell > p { color:var(--ink-soft); }
.shared-result-score { margin:24px 0; padding:18px 20px; border-radius:16px; background:#08393d; color:#fff; display:grid; grid-template-columns:auto auto 1fr; gap:16px; align-items:center; }
.shared-result-score span { color:rgba(255,255,255,.65); }
.shared-result-score strong { font-size:1.45rem; }
.shared-result-score em { justify-self:end; font-style:normal; color:#78bca9; font-weight:800; }
.shared-result-metrics { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
.shared-result-metrics article { padding:16px; border-radius:14px; background:#f3f5f2; display:grid; gap:3px; }
.shared-result-metrics span,.shared-result-metrics small { color:var(--ink-soft); font-size:.74rem; }
.shared-result-actions { margin-top:25px; display:flex; gap:10px; flex-wrap:wrap; }
.shared-result-note { display:block; margin-top:18px; color:var(--ink-soft); }

@media (max-width: 1120px) {
    .home-live-strip__inner { grid-template-columns:1fr; gap:12px; padding-top:20px; padding-bottom:20px; }
    .home-live-strip__metrics { width:100%; }
    .home-live-strip__metrics > div:first-child { border-left:0; }
    .energy-live-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .county-seo-grid { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .size-selector { grid-template-columns:1fr 1fr; }
    .size-selector__result { grid-column:1/-1; border-left:0; border-top:1px solid rgba(255,255,255,.18); padding:16px 0 0; }
}
@media (max-width: 820px) {
    .seo-hub-grid,.info-grid--three,.seo-content-grid { grid-template-columns:1fr; }
    .county-directory-summary,.county-kpis,.size-kpis { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .county-seo-grid,.solar-size-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .monthly-bars { overflow-x:auto; grid-template-columns:repeat(12,48px); padding-bottom:8px; }
    .related-links > div { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .energy-mix-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
    .home-live-strip__metrics { grid-template-columns:1fr; }
    .home-live-strip__metrics > div { border-left:0; border-top:1px solid rgba(255,255,255,.12); padding-left:0; }
    .energy-live-grid,.county-directory-summary,.county-kpis,.size-kpis,.county-seo-grid,.solar-size-grid,.shared-result-metrics { grid-template-columns:1fr; }
    .energy-live-grid article { min-height:136px; }
    .energy-source-box,.result-share-card { align-items:flex-start; flex-direction:column; }
    .result-share-actions { width:100%; justify-content:flex-start; }
    .size-selector { grid-template-columns:1fr; }
    .size-selector__result { grid-column:auto; }
    .related-links > div { grid-template-columns:1fr; }
    .energy-mix-grid { grid-template-columns:1fr; }
    .shared-result-shell { padding:24px; }
    .shared-result-score { grid-template-columns:1fr 1fr; }
    .shared-result-score em { grid-column:1/-1; justify-self:start; }
}

/* EnergiaRegenerabila.ro v1.9.3 - rezultate distribuite si preturi prosumator corect separate */
.county-map-panel select {
    width: 100%;
    min-height: 52px;
    padding: 0 46px 0 15px;
    border: 1px solid #cbd9d5;
    border-radius: 13px;
    background-color: #fff;
    color: var(--ink-deep);
    font: inherit;
    font-size: .92rem;
    box-shadow: 0 1px 0 rgba(18,52,59,.03);
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, #55736f 50%),
        linear-gradient(135deg, #55736f 50%, transparent 50%);
    background-position:
        calc(100% - 19px) calc(50% - 2px),
        calc(100% - 14px) calc(50% - 2px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    cursor: pointer;
}
.county-map-panel select:hover { border-color:#9eb9b2; }
.county-map-actions { display:grid; gap:12px; margin-top:24px; }
.county-map-actions .button { margin:0 !important; }

.county-editorial {
    width: 100%;
    max-width: none;
    margin: 0 0 48px;
}
.county-editorial h2 { max-width:none; }
.county-editorial p { max-width:none; }
.size-page .county-editorial { width:100%; max-width:none; }

.market-reference {
    margin: 12px 0 46px;
    padding: 28px;
    border: 1px solid rgba(8,57,61,.09);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(8,57,61,.045);
}
.market-reference--energy-today { margin-top:26px; margin-bottom:0; }
.market-reference__head {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
    margin-bottom:18px;
}
.market-reference__head h2 { margin:6px 0 0; font-size:clamp(1.45rem,2.3vw,2rem); }
.market-reference__head small { color:var(--ink-soft); font-size:.74rem; white-space:nowrap; }
.market-reference__grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:10px;
}
.market-reference__grid article {
    min-height:128px;
    padding:18px;
    border-radius:16px;
    background:#f3f6f2;
    border:1px solid rgba(8,57,61,.07);
    display:flex;
    flex-direction:column;
}
.market-reference__grid article:nth-child(2),
.market-reference__grid article:nth-child(4) { background:#eef5f2; }
.market-reference__grid span { color:var(--ink-soft); font-size:.74rem; font-weight:800; }
.market-reference__grid strong { margin:9px 0 4px; color:#08393d; font-size:1.35rem; letter-spacing:-.02em; }
.market-reference__grid small { margin-top:auto; color:#66807b; font-size:.7rem; }
.market-reference__note { margin:16px 0 10px; color:var(--ink-soft); font-size:.78rem; line-height:1.55; }
.market-reference > .text-link { display:inline-flex; margin-top:2px; }
.market-reference__unavailable { display:grid; gap:4px; padding:18px; border-radius:14px; background:#f6f3ea; color:var(--ink-soft); }
.market-reference__unavailable strong { color:var(--ink-deep); }

.county-faq {
    width:100%;
    max-width:none;
    margin:50px 0;
    padding:28px;
    border-radius:22px;
    background:#fff;
    border:1px solid rgba(8,57,61,.08);
}
.county-faq h2 { margin-bottom:8px; }
.county-faq details:last-child { border-bottom:0; }

@media (max-width: 980px) {
    .market-reference__grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 620px) {
    .county-map-panel select { min-height:50px; font-size:.9rem; }
    .market-reference { padding:20px; border-radius:18px; }
    .market-reference__head { align-items:flex-start; flex-direction:column; gap:8px; }
    .market-reference__head small { white-space:normal; }
    .market-reference__grid { grid-template-columns:1fr; }
    .market-reference__grid article { min-height:110px; }
    .county-faq { padding:20px; border-radius:18px; }
}


/* v1.9.3 - share results: spacing and deterministic button grid */
.result-share-card {
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(360px,430px);
    align-items:center;
    gap:22px;
    margin-top:18px;
    margin-bottom:0;
    padding:18px 20px;
}
.result-share-card > div:first-child { align-self:center; }
.result-share-actions {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:9px;
    width:100%;
}
.result-share-actions button {
    width:100%;
    min-height:42px;
    padding:8px 10px;
    white-space:nowrap;
    text-align:center;
}
.result-share-card + .result-report { margin-top:18px; }

/* v1.9.3 - prosumer price model: distinguish retail purchase from injected energy */
.market-reference__grid--prosumator .market-reference__card--buy {
    background:#fff8ea;
    border-color:rgba(246,169,59,.26);
}
.market-reference__grid--prosumator .market-reference__card--sell {
    background:#eef7f3;
    border-color:rgba(8,57,61,.12);
}
.market-reference__grid--prosumator .market-reference__card--buy strong,
.market-reference__grid--prosumator .market-reference__card--sell strong {
    font-size:1.05rem;
    line-height:1.22;
}
.market-reference__sources {
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    align-items:center;
    margin-top:4px;
}
@media (max-width: 860px) {
    .result-share-card { grid-template-columns:1fr; gap:14px; }
    .result-share-actions { grid-template-columns:repeat(3,minmax(0,1fr)); }
}
@media (max-width: 560px) {
    .result-share-actions { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .result-share-actions button { white-space:normal; }
    .market-reference__sources { align-items:flex-start; flex-direction:column; gap:8px; }
}

/* EnergiaRegenerabila.ro v1.9.3 - fallback SEN si repere preturi */
.energy-source-box > div { display:flex; flex-direction:column; gap:6px; }
.energy-source-box small { display:block; max-width:980px; color:var(--muted); line-height:1.55; }
.energy-official-fallback { margin-top:22px; border:1px solid var(--line); border-radius:22px; background:#fff; overflow:hidden; }
.energy-official-fallback > div { padding:20px 22px 14px; display:flex; flex-direction:column; gap:5px; }
.energy-official-fallback > div strong { color:var(--ink); }
.energy-official-fallback > div span { color:var(--muted); }
.energy-official-fallback iframe { display:block; width:100%; min-height:540px; border:0; background:#fff; }
.market-reference__card strong { line-height:1.15; }
.market-reference__sources { display:flex; flex-wrap:wrap; gap:14px 26px; }
@media (max-width: 760px) {
  .energy-official-fallback iframe { min-height:620px; }
  .energy-source-box { align-items:flex-start; }
}

/* EnergiaRegenerabila.ro v1.9.4 - Energie azi: fallback compact */
.energy-unavailable-note {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #fff8ea;
    border: 1px solid rgba(246,169,59,.22);
    color: var(--ink-soft);
    font-size: .82rem;
}
.energy-source-box small { max-width: none; }

/* EnergiaRegenerabila.ro v1.9.5 - share compact + Energy-Charts v2 */
.result-share-card {
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    align-items:start;
    margin-top:18px;
    padding:18px 20px;
}
.result-share-title {
    display:block;
    margin:0;
    color:#fff;
    font-size:1rem;
    font-weight:800;
    line-height:1.2;
}
.result-share-actions {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:9px;
    width:100%;
}
.result-share-actions button {
    width:100%;
    min-width:0;
    min-height:42px;
    padding:8px 10px;
    white-space:nowrap;
    text-align:center;
}
.result-share-card + .result-report { margin-top:18px; }
@media (max-width:560px) {
    .result-share-actions { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .result-share-actions button { white-space:normal; }
}

/* EnergiaRegenerabila.ro v1.9.6 - bilant SEN validat si mix sincronizat */
.energy-balance-proof {
    margin-top:16px;
    padding:16px 19px;
    border:1px solid rgba(8,57,61,.12);
    border-radius:16px;
    background:linear-gradient(135deg,#eef8f4 0%,#f8fbf9 100%);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}
.energy-balance-proof > div {
    display:grid;
    grid-template-columns:auto auto;
    align-items:center;
    column-gap:9px;
}
.energy-balance-proof small {
    grid-column:2;
    color:var(--ink-soft);
    font-size:.74rem;
}
.energy-balance-proof p {
    margin:0;
    color:#08393d;
    font-weight:850;
    text-align:right;
}
.energy-summary-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:12px;
    margin-top:16px;
}
.energy-summary-grid article {
    padding:17px 19px;
    border:1px solid rgba(8,57,61,.08);
    border-radius:16px;
    background:#fff;
    display:grid;
    gap:4px;
}
.energy-summary-grid span,
.energy-summary-grid small {
    color:var(--ink-soft);
    font-size:.74rem;
}
.energy-summary-grid strong {
    color:#08393d;
    font-size:1.35rem;
}
.energy-mix-grid article small {
    color:var(--ink-soft);
    font-size:.68rem;
    line-height:1.35;
}
.energy-mix-grid article:has(strong:first-of-type) { min-width:0; }
@media (max-width:860px) {
    .energy-balance-proof { align-items:flex-start; flex-direction:column; gap:10px; }
    .energy-balance-proof p { text-align:left; }
    .energy-summary-grid { grid-template-columns:1fr; }
}

/* EnergiaRegenerabila.ro v2.0.0 - Multi-energy, prosumatori si continut editorial */
.calculator-hub { padding-top: 48px; }
.calculator-group { margin-bottom: 64px; }
.calculator-group:last-child { margin-bottom: 0; }
.calculator-group__head { display: grid; grid-template-columns: 58px minmax(0,1fr); gap: 22px; align-items: start; margin-bottom: 24px; max-width: 900px; }
.calculator-group__head > span { display: grid; place-items: center; width: 50px; height: 50px; border-radius: 16px; background: #e6f3ef; color: #0a6d65; font-weight: 800; letter-spacing: .08em; }
.calculator-group__head h2 { margin: 0 0 6px; font-size: clamp(1.8rem,3vw,2.7rem); }
.calculator-group__head p { margin: 0; color: var(--muted); }
.calculator-directory--grouped { grid-template-columns: repeat(4,minmax(0,1fr)); }
.calculator-directory--grouped .calculator-directory-card { min-height: 245px; }
.calculator-directory--grouped h3 { font-size: 1.35rem; margin: 14px 0 10px; }

.prosumer-national-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; margin-bottom: 54px; }
.prosumer-national-grid article { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: #fff; box-shadow: 0 20px 45px rgba(8,57,61,.06); }
.prosumer-national-grid span,.county-prosumer-grid span { display:block; color:var(--muted); font-weight:700; font-size:.9rem; text-transform:uppercase; letter-spacing:.08em; }
.prosumer-national-grid strong { display:block; margin:10px 0 6px; font-size:clamp(2rem,3.4vw,3.4rem); color:#08393d; }
.prosumer-national-grid small { color:var(--muted); }
.prosumer-ranking-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:28px; margin-bottom:44px; }
.prosumer-ranking-grid > section { padding:30px; background:#fff; border:1px solid var(--line); border-radius:28px; }
.prosumer-top-list { list-style:none; padding:0; margin:0; display:grid; gap:0; }
.prosumer-top-list li { display:grid; grid-template-columns:36px minmax(0,1fr) auto; gap:14px; align-items:center; padding:14px 0; border-bottom:1px solid var(--line); }
.prosumer-top-list li:last-child { border-bottom:0; }
.prosumer-top-list li > span { display:grid; place-items:center; width:30px; height:30px; border-radius:10px; background:#e6f3ef; color:#087168; font-weight:800; }
.prosumer-top-list a { color:#0c3035; font-weight:800; text-decoration:none; }
.prosumer-top-list strong { color:#0a6d65; }
.prosumer-table { width:100%; border-collapse:collapse; background:#fff; border-radius:24px; overflow:hidden; }
.prosumer-table th,.prosumer-table td { padding:17px 18px; border-bottom:1px solid var(--line); text-align:left; white-space:nowrap; }
.prosumer-table thead th { background:#08393d; color:#fff; font-size:.86rem; text-transform:uppercase; letter-spacing:.06em; }
.prosumer-table tbody th a { color:#08393d; text-decoration:none; }
.prosumer-table tbody tr:hover { background:#f2f8f6; }
.data-source-card { display:flex; justify-content:space-between; gap:30px; align-items:center; margin-top:30px; padding:26px 30px; border:1px solid var(--line); border-radius:24px; background:#f4f8f6; }
.data-source-card p { margin:5px 0 0; color:var(--muted); }
.county-prosumer-block { margin:50px 0; padding:36px; background:linear-gradient(135deg,#f4faf7,#eef5f1); border:1px solid var(--line); border-radius:28px; }
.county-prosumer-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:16px; }
.county-prosumer-grid article { padding:22px; border-radius:20px; background:#fff; border:1px solid var(--line); }
.county-prosumer-grid strong { display:block; margin:10px 0 4px; font-size:1.6rem; color:#08393d; }
.county-prosumer-grid small,.county-prosumer-source { color:var(--muted); }
.county-prosumer-source { display:block; margin-top:18px; }

.article-card__visual--image,.featured-article__visual--image { position:relative; display:block; overflow:hidden; background:#eaf1ee; }
.article-card__visual--image img,.featured-article__visual--image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .35s ease; }
.article-card:hover .article-card__visual--image img,.featured-article:hover .featured-article__visual--image img { transform:scale(1.025); }
.article-card__visual--image > span,.featured-article__visual--image > span { position:absolute; top:20px; left:20px; display:inline-flex; width:auto; height:auto; padding:9px 14px; border-radius:999px; background:rgba(255,255,255,.92); color:#08393d; font-size:.78rem; font-weight:900; letter-spacing:.08em; text-transform:uppercase; }
.article-card__visual--image { min-height:220px; }
.featured-article__visual--image { min-height:460px; }
.article-cover { margin-top:-34px; position:relative; z-index:2; }
.article-cover img { display:block; width:100%; max-height:620px; object-fit:cover; border-radius:30px; box-shadow:0 30px 70px rgba(8,57,61,.14); }
.admin-article-image-preview { display:grid; grid-template-columns:minmax(0,280px) 1fr; gap:20px; align-items:center; padding:18px; background:#f4f7f6; border:1px solid var(--line); border-radius:18px; }
.admin-article-image-preview img { width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:12px; }
.admin-check { display:flex!important; flex-direction:row!important; align-items:center; gap:10px; }
.admin-check input { width:auto!important; }

@media (max-width:1180px) {
  .calculator-directory--grouped { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .prosumer-national-grid,.county-prosumer-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width:800px) {
  .calculator-group { margin-bottom:46px; }
  .calculator-group__head { grid-template-columns:44px minmax(0,1fr); gap:14px; }
  .calculator-group__head > span { width:42px; height:42px; border-radius:13px; }
  .calculator-directory--grouped,.prosumer-national-grid,.prosumer-ranking-grid,.county-prosumer-grid { grid-template-columns:1fr; }
  .calculator-directory--grouped .calculator-directory-card { min-height:auto; }
  .data-source-card { align-items:flex-start; flex-direction:column; }
  .county-prosumer-block { padding:24px; }
  .featured-article__visual--image { min-height:280px; }
  .article-cover { margin-top:-18px; }
  .article-cover img { border-radius:20px; }
  .admin-article-image-preview { grid-template-columns:1fr; }
}

/* EnergiaRegenerabila.ro v2.0.1 - hotfix calculator hub si sumar mix energetic */

/* EnergiaRegenerabila.ro v2.0.3 - sector public: pompa de caldura + screening nZEB */
.calculator-inline-note { margin:18px 0 20px; padding:18px 20px; border:1px solid #cfe0da; border-radius:18px; background:#f3f8f6; color:#35565c; }
.calculator-inline-note strong { display:block; margin-bottom:5px; color:#08393d; }
.calculator-inline-note span { display:block; line-height:1.55; }

/* EnergiaRegenerabila.ro v2.0.4 - rezultat nZEB: titlu si status echilibrate */
#public-nzeb-result .result-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 24px;
}

#public-nzeb-result .result-head > div {
    min-width: 0;
}

#public-nzeb-result .result-head h2 {
    max-width: 18ch;
    margin-top: 7px;
    font-size: clamp(1.65rem, 2.5vw, 2.05rem);
    line-height: 1.08;
    text-wrap: balance;
}

#public-nzeb-result .result-status {
    max-width: 220px;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
}

@media (max-width: 720px) {
    #public-nzeb-result .result-head {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #public-nzeb-result .result-head h2 {
        max-width: none;
    }

    #public-nzeb-result .result-status {
        justify-self: start;
        max-width: 100%;
    }
}

/* EnergiaRegenerabila.ro v2.0.5 - ipoteze financiare parc FV productie */
.finance-assumptions-head {
  display: grid;
  gap: 6px;
  margin-top: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(8,57,61,.16);
  border-radius: 18px;
  background: rgba(8,57,61,.055);
}
.finance-assumptions-head strong {
  color: #08393d;
  font-size: 17px;
  line-height: 1.25;
}
.finance-assumptions-head small {
  color: #5f7476;
  font-size: 13px;
  line-height: 1.5;
}

/* EnergiaRegenerabila.ro v2.0.8 - AdSense/CMP si delimitare furnizor rapoarte */


/* EnergiaRegenerabila.ro v2.0.8 - imagini editoriale curate */
.article-cover img { max-height: 480px; object-fit: cover; }
.article-card__visual--image img, .featured-article__visual--image img { object-position: center; }
@media (max-width: 720px) {
  .article-cover img { max-height: 360px; }
}


/* ======================================================================
   EnergiaRegenerabila.ro v2.0.17 - reteaua de proiecte si OGAUS Technology
   ====================================================================== */
.footer-network {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-top: 46px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, .11);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.footer-powered {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.footer-powered__copy {
    color: rgba(255, 255, 255, .55);
    font-size: .69rem;
    white-space: nowrap;
}

.footer-powered__logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 !important;
    line-height: 0;
}

.footer-powered__logo img {
    display: block;
    width: 158px;
    max-width: 100%;
    height: auto;
    opacity: .94;
}

.footer-powered__logo:hover img {
    opacity: 1;
}

.footer-projects {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-projects__label {
    margin-right: 2px;
    color: rgba(255, 255, 255, .43);
    font-size: .65rem;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.footer-projects a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px !important;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: rgba(255, 255, 255, .72) !important;
    font-size: .68rem;
    font-weight: 700;
    white-space: nowrap;
}

.footer-projects a:hover {
    border-color: rgba(255, 255, 255, .24);
    background: rgba(255, 255, 255, .075);
    color: #fff !important;
}

@media (max-width: 900px) {
    .footer-network {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .footer-projects {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .footer-network {
        padding: 18px;
    }

    .footer-powered {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .footer-powered__copy {
        white-space: normal;
    }

    .footer-powered__logo img {
        width: 148px;
    }

    .footer-projects {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .footer-projects__label {
        margin-bottom: 2px;
    }

    .footer-projects a {
        justify-content: center;
        width: 100%;
    }
}
