*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --orange: #ea580c;
    --navy: #192a43;
    --gray: #808080;
    --light: #ededed;
    --red: #b0021f;
    --teal: #00767b;
    --black: #0d0d0d;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    color: var(--navy);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-family: "DM Serif Display", serif;
    line-height: 1.15;
}
img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.label {
    display: inline-block;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition:
        opacity 0.2s,
        transform 0.1s;
    line-height: 1.2;
    vertical-align: middle;
}
.btn .arrow {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    font-size: 1.1em;
    position: relative;
    top: 0.04em;
}
.btn:hover {
    opacity: 0.88;
}
.btn:active {
    transform: scale(0.98);
}
.btn-orange {
    background: var(--orange);
    color: #fff;
}

/* ── NAV ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fff;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.07);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.nav-logo img {
    height: 38px;
    width: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--orange);
}
.nav-cta {
    font-size: 14px;
    padding: 11px 20px;
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    border: none;
    background: none;
}
.nav-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
}

.nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px 24px 28px;
    gap: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 99;
}

@media (max-width: 900px) {
    .nav-links,
    .nav-cta {
        display: none;
    }
    .nav-burger {
        display: flex;
    }
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url("img/hero.jpg") center 30% / cover no-repeat;
    background-image: image-set(
        url("img/hero.webp") type("image/webp"),
        url("img/hero.jpg") type("image/jpeg")
    );
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.45) 48%,
        rgba(0, 0, 0, 0.05) 100%
    );
}
.hero-body {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}
.hero-inner {
    max-width: 610px;
}
.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 28px;
}
.hero h1 {
    font-size: clamp(34px, 5vw, 58px);
    color: #fff;
    margin-bottom: 22px;
}
.hero p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    max-width: 500px;
    line-height: 1.75;
    margin-bottom: 36px;
}

@media (max-width: 768px) {
    .hero-body {
        padding: 100px 24px 60px;
    }
    .hero-inner {
        max-width: 100%;
    }
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.7) 60%,
            rgba(0, 0, 0, 0.38) 100%
        );
    }
}

/* ── PARTNERS ── */
.partners {
    background: var(--light);
    padding: 56px 24px;
    text-align: center;
}
.partners h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 36px;
}
.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.partners-logos img {
    height: 48px;
    width: auto;
    filter: grayscale(100%) opacity(0.65);
    transition: filter 0.2s;
    object-fit: contain;
}
.partners-logos img:hover {
    filter: grayscale(0%) opacity(1);
}
.partners-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}
.dot {
    color: var(--orange);
    font-size: 20px;
    line-height: 1;
}
.teal {
    color: var(--teal);
}

/* ── PROBLEM ── */
.problem {
    padding: 96px 24px;
    background: #fff;
    text-align: center;
}
.problem h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    max-width: 760px;
    margin: 0 auto 24px;
}
.problem p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 36px;
}

/* ── SOLUTION ── */
.solution {
    padding: 80px 24px;
    background: #fff;
}
.solution-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.solution-img {
    border-radius: 16px;
    overflow: hidden;
}
.solution-img img {
    width: 100%;
    border-radius: 16px;
}
.solution-text h2 {
    font-size: clamp(26px, 2.8vw, 36px);
    margin-bottom: 18px;
}
.solution-text h2 em {
    font-style: italic;
    color: var(--orange);
}
.solution-text > p {
    font-size: 15px;
    color: #555;
    line-height: 1.78;
    margin-bottom: 28px;
}
.bullets {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.bullet {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.bullet-arrow {
    color: var(--orange);
    font-size: 14px;
    flex-shrink: 0;
}
.bullet p {
    font-size: 14px;
    color: #444;
    line-height: 1.65;
}
.bullet strong {
    color: var(--navy);
}

@media (max-width: 900px) {
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* ── BENEFITS ── */
.benefits {
    padding: 96px 24px;
    background: var(--light);
}
.benefits-hd {
    text-align: center;
    margin-bottom: 44px;
}
.benefits-hd h2 {
    font-size: clamp(28px, 3.5vw, 42px);
}
.benefits-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.benefit {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.benefit-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}
.benefit-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.benefit h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}
.benefit p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .benefits-card {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px;
    }
}
@media (max-width: 520px) {
    .benefits-card {
        grid-template-columns: 1fr;
    }
}

/* ── CALCULATOR ── */
.calculator {
    padding: 96px 24px;
    background: #fff;
}
.calc-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;
    align-items: start;
}
.calc-left h2 {
    font-size: clamp(24px, 2.8vw, 34px);
    margin-bottom: 16px;
}
.calc-left p {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
}
.calc-note {
    font-size: 12px !important;
    color: #5a5a5a !important;
    margin-top: 12px !important;
}

.slider-wrap {
    margin-bottom: 28px;
}
.slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}
.slider-label > span {
    font-size: 14px;
    color: #555;
}
.slider-label strong {
    font-size: 19px;
    font-weight: 700;
    color: var(--navy);
}

input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--light);
    outline: none;
    cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.calc-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 28px;
}
.cbox {
    border-radius: 12px;
    padding: 18px 14px;
}
.cbox-lbl {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 10px;
}
.cbox-amt {
    font-family: "DM Serif Display", serif;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 4px;
}
.cbox-sub {
    font-size: 14px;
}
.cbox-ext {
    font-size: 14px;
    margin-top: 8px;
    line-height: 1.45;
}
.cbox.trad {
    background: #ffe5ea;
    color: var(--red);
}
.cbox.ciepl {
    background: #d6f5f5;
    color: var(--teal);
}
.cbox.savng {
    background: var(--navy);
    color: #fff;
}
.cbox.savng .cbox-lbl {
    color: rgba(255, 255, 255, 0.7);
}

.invest-hd {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 14px;
}
.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.ibox {
    background: var(--light);
    border-radius: 10px;
    padding: 16px;
}
.ibox-lbl {
    font-size: 14px;
    color: #4a4a4a;
    margin-bottom: 3px;
    line-height: 1.3;
}
.ibox-sub {
    font-size: 14px;
    color: #5a5a5a;
    margin-bottom: 8px;
}
.ibox-val {
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    color: var(--navy);
}
.ibox-ret {
    font-size: 14px;
    color: #444;
    font-weight: 600;
}

@media (max-width: 960px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .calc-boxes {
        grid-template-columns: 1fr;
    }
}

/* ── FOR WHOM ── */
.forwhom {
    background: var(--black);
    padding: 96px 24px;
    text-align: center;
}
.forwhom h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    color: #fff;
    margin-bottom: 56px;
}
.forwhom-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.forwhom-cell {
    padding: 40px 24px;
    text-align: center;
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
    border-right: 1px solid #2e2e2e;
    border-bottom: 1px solid #2e2e2e;
}
.forwhom-cell:nth-child(3n) {
    border-right: none;
}
.forwhom-cell:nth-child(4),
.forwhom-cell:nth-child(5),
.forwhom-cell:nth-child(6) {
    border-bottom: none;
}

@media (max-width: 600px) {
    .forwhom-grid {
        grid-template-columns: 1fr 1fr;
    }
    .forwhom-cell:nth-child(2n) {
        border-right: none;
    }
    .forwhom-cell:nth-child(5),
    .forwhom-cell:nth-child(6) {
        border-bottom: none;
    }
    .forwhom-cell:nth-child(4) {
        border-bottom: 1px solid #2e2e2e;
    }
}

/* ── PROCESS ── */
.process {
    padding: 96px 24px;
    background: #fff;
    text-align: center;
}
.process h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    margin-bottom: 16px;
}
.process-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.78;
    max-width: 720px;
    margin: 0 auto 48px;
}
.process-steps {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.process-step {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: left;
}
.step-num {
    font-family: "DM Sans", sans-serif;
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    background-image: url("img/budynek.jpg");
    background-size: 400px auto;
    background-position: center 30%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.process-step h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}
.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.65;
}
.process-note {
    max-width: 960px;
    margin: 24px auto 0;
    font-size: 13px;
    color: #5a5a5a;
    text-align: left;
    font-style: italic;
}
.process-note sup {
    color: var(--orange, #e87722);
    font-weight: 700;
}

@media (max-width: 620px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
}

/* ── FINANCING ── */
.financing {
    padding: 96px 24px;
    background: var(--light);
}
.financing-hd {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 44px;
}
.financing-hd h2 {
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 16px;
}
.financing-hd p {
    font-size: 16px;
    color: #555;
    line-height: 1.72;
}
.program-grid {
    max-width: 1100px;
    margin: 0 auto 44px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pcard {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
}
.pcard h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}
.pcard p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
}
.financing-cta {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}
.financing-cta p {
    font-family: "DM Serif Display", serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.42;
}
.financing-cta .hi {
    color: var(--orange);
}

@media (max-width: 768px) {
    .program-grid {
        grid-template-columns: 1fr;
    }
}

/* ── ABOUT ── */
.about {
    background: #fff;
    overflow: hidden;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 620px;
}
.about-left {
    padding: 80px clamp(24px, 5vw, 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-left h2 {
    font-size: clamp(26px, 3vw, 36px);
    margin-bottom: 20px;
}
.about-left p {
    font-size: 15px;
    color: #555;
    line-height: 1.78;
    margin-bottom: 14px;
}
.about-right {
    overflow: hidden;
}
.about-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.about-features {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 28px;
}
.abox {
    flex: 1;
    background: #fff;
    border: 1px solid #ededed;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
.abox h4 {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}
.abox p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 960px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-features {
        flex-direction: column;
    }
}

/* ── FAQ ── */
.faq {
    padding: 96px 24px;
    background: var(--light);
}
.faq-hd {
    text-align: center;
    margin-bottom: 44px;
}
.faq-hd h2 {
    font-size: clamp(26px, 3vw, 40px);
}
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    user-select: none;
}
.faq-q-text {
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.faq-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #666;
    transition:
        background 0.2s,
        transform 0.3s;
}
.faq-arrow svg {
    display: block;
    flex-shrink: 0;
}
.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    background: var(--orange);
    color: #fff;
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-item.open .faq-body {
    max-height: 600px;
}
.faq-body-inner {
    padding: 0 28px 24px;
    padding-top: 18px;
    border-top: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
    line-height: 1.78;
}
.faq-footer {
    text-align: center;
    margin-top: 36px;
    font-size: 16px;
    color: #555;
}
.faq-footer strong {
    color: var(--navy);
}

/* ── CONTACT ── */
.contact {
    background: var(--black);
    padding: 80px 24px;
}
.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-left h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: #fff;
    margin-bottom: 16px;
}
.contact-left > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.75;
    margin-bottom: 32px;
}
.contact-feats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.cfeat {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}
.cfeat-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.cfeat-icon img {
    width: 36px;
    height: 36px;
    object-fit: cover;
}
.contact-info h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.contact-info a {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.2s;
}
.contact-info a:hover {
    color: var(--orange);
}

.form-box {
    background: #fff;
    border-radius: 16px;
    padding: 36px;
}
.form-box h3 {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 22px;
}
.fg {
    margin-bottom: 14px;
}
.fg label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 5px;
}
.fg label .req {
    color: #e53935;
    margin-left: 2px;
}
.fg input,
.fg textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: var(--navy);
    outline: none;
    transition: border-color 0.2s;
    background: #fff;
}
.fg input:focus,
.fg textarea:focus {
    border-color: var(--orange);
}
.fg textarea {
    min-height: 96px;
    resize: vertical;
}
.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--orange);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: opacity 0.2s;
}
.form-submit:hover {
    opacity: 0.9;
}
.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.form-status {
    margin-top: 12px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    display: none;
}
.form-status.is-pending {
    display: block;
    background: #fff4e0;
    color: #8a5a00;
}
.form-status.is-success {
    display: block;
    background: #e6f7e9;
    color: #1e6b2b;
}
.form-status.is-error {
    display: block;
    background: #fde8e8;
    color: #b3261e;
}
.form-disc {
    font-size: 11px;
    color: #5a5a5a;
    text-align: center;
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ── FOOTER BAR ── */
.footerbar {
    background: #080808;
    border-top: 1px solid #1e1e1e;
    padding: 22px 24px;
    text-align: center;
}
.footerbar p {
    font-size: 13px;
    color: #9a9a9a;
}
.footerbar a {
    color: #9a9a9a;
    text-decoration: none;
    transition: color 0.2s;
}
.footerbar a:hover {
    color: var(--orange);
}
