/* ==========================================================
   HOLOBIUM ENERGIES — PREMIUM ORANGE THEME
   ========================================================== */

:root {
    --bg: #06080a;
    --bg-light: #101820;
    --bg-deep: #030405;

    --surface: rgba(18, 24, 30, 0.82);
    --surface-strong: rgba(12, 16, 20, 0.92);

    --primary: #d58a1e;
    --primary-light: #f2a638;
    --primary-dark: #9e6414;

    --white: #f7f7f4;
    --text: #d4d4d0;
    --muted: #8f9498;

    --border: rgba(255, 255, 255, 0.08);
    --border-orange: rgba(213, 138, 30, 0.35);

    --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);

    --radius: 20px;
    --transition: 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
    --nav-height: 88px;
}

/* ========================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: "Inter", sans-serif;
    line-height: 1.75;
    overflow-x: hidden;
}

/* ========================================================== */

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at top left, rgba(213, 138, 30, 0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(242, 166, 56, 0.08), transparent 42%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.18;
    pointer-events: none;
    z-index: -1;
}

/* ========================================================== */

.container {
    width: min(1250px, 90%);
    margin: auto;
}

section {
    padding: 120px 0;
    position: relative;
}

/* ========================================================== */

h1 {
    font-size: clamp(3.8rem, 7.5vw, 7rem);
    line-height: 0.95;
    letter-spacing: -4px;
    margin-bottom: 35px;
}

h2 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

h3 {
    font-size: 1.45rem;
    margin-bottom: 16px;
}

h4 {
    margin-bottom: 18px;
}

p {
    color: var(--text);
    font-size: 1.05rem;
    max-width: 680px;
}

p + p {
    margin-top: 18px;
}

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

/* ========================================================== */
/* NAVIGATION */
/* ========================================================== */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(3, 5, 7, 0.68);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
    height: var(--nav-height);

}

nav.scrolled {
    background: rgba(3, 5, 7, 0.92);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.nav-container {
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    color: white;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo-text span {
    color: var(--primary);
    font-size: .72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 4px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a {
    color: #d0d0cf;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: var(--transition);
}

.menu a:hover,
.menu a.active {
    color: var(--primary-light);
}

.language-switcher {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-left: 15px;
}

.language-switcher a {
    text-decoration: none;
    transition: transform 0.2s;
    display: flex;
    align-items: center;
}

.language-switcher .flag-icon {
    width: 24px;
    height: 16px;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.language-switcher a:hover {
    transform: scale(1.2);
}

/* ========================================================== */
/* BUTTONS */
/* ========================================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 2px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    transition: var(--transition);
}

.button-primary {
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    color: #0b0b0b !important;
    border: 1px solid rgba(255, 255, 255, .08);
}

.button-primary:hover {
    transform: translateY(-3px);
    background: linear-gradient(180deg, #ffb344, #d98209);
    box-shadow: 0 18px 45px rgba(213, 138, 30, 0.34);
}

.button-outline {
    color: white;
    border: 1px solid rgba(255, 255, 255, .25);
    margin-left: 14px;
    background: rgba(0, 0, 0, .2);
}

.button-outline:hover {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(213, 138, 30, 0.08);
}

/* ========================================================== */
/* HERO */
/* ========================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    overflow: hidden;
    background: linear-gradient(
        to bottom,
        rgba(5, 8, 10, .82) 0%,
        rgba(5, 8, 10, .40) 30%,
        rgba(5, 8, 10, .55) 65%,
        rgba(5, 8, 10, .92) 100%
    ),
    linear-gradient(
        90deg,
        rgba(5, 8, 10, .82) 0%,
        rgba(5, 8, 10, .45) 45%,
        rgba(5, 8, 10, .70) 100%
    ),
    url(/build/images/image1.d5dbf0af.png);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-image {
    position: absolute;
    inset: 0;
}

.home .hero-image {
    background-image: url(/build/images/image1.d5dbf0af.png);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        to bottom,
        rgba(3, 5, 7, 0.78) 0%,
        rgba(3, 5, 7, 0.45) 38%,
        rgba(3, 5, 7, 0.88) 100%
    ),
    linear-gradient(
        90deg,
        rgba(3, 5, 7, 0.88) 0%,
        rgba(3, 5, 7, 0.52) 45%,
        rgba(3, 5, 7, 0.74) 100%
    ),
    linear-gradient(
        90deg,
        rgba(213, 138, 30, 0.16),
        transparent 48%
    );

    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.hero p {
    font-size: 1.18rem;
    margin-bottom: 38px;
}

@keyframes heroZoom {
    from {
        transform: scale(1.06);
    }
    to {
        transform: scale(1.16);
    }
}

.hero-content {
    max-width: 920px;
}

.hero-kicker {
    color: var(--primary-light);
    font-size: .86rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(3.2rem, 6.8vw, 6.4rem);
    margin-bottom: 26px;
}

.hero p {
    margin-bottom: 16px;
}

.hero-description {
    max-width: 760px;
    color: var(--text);
}

.hero-support {
    margin-top: 26px;
    padding-left: 22px;
    border-left: 3px solid var(--primary);
    max-width: 760px;
}

.hero-support strong {
    display: block;
    color: var(--white);
    margin-bottom: 6px;
}

.hero-support span {
    color: var(--text);
    font-size: .98rem;
}

.hero-actions {
    margin-top: 30px;
}

@media (max-height: 780px) {
    .hero h1 {
        font-size: clamp(2.8rem, 5.6vw, 5.2rem);
    }

    .hero-kicker {
        margin-bottom: 14px;
    }

    .hero-support {
        margin-top: 18px;
    }

    .hero-actions {
        margin-top: 22px;
    }
}

/* ========================================================== */
/* LAYOUT */
/* ========================================================== */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.image {
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.image-small {
    max-height: 520px;
}

.image-small img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
}

.image img {
    width: 100%;
    display: block;
    transition: 1.4s ease;
}

.image:hover img {
    transform: scale(1.08);
}

/* ========================================================== */
/* GLASS PANELS */
/* ========================================================== */

.glass {
    background: linear-gradient(
        180deg,
        rgba(22, 28, 34, 0.84),
        rgba(9, 12, 15, 0.86)
    );
    backdrop-filter: blur(1px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: var(--shadow);
}

.glass:hover {
    border-color: rgba(213, 138, 30, 0.24);
}

/* ========================================================== */
/* FEATURES */
/* ========================================================== */

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.feature {
    background: linear-gradient(
        180deg,
        rgba(22, 28, 34, 0.82),
        rgba(10, 13, 16, 0.9)
    );
    backdrop-filter: blur(15px);
    border-radius: var(--radius);
    padding: 42px;
    border: 1px solid var(--border);
    transition: var(--transition);
    min-height: 280px;
}

.feature:hover {
    transform: translateY(-10px);
    border-color: var(--border-orange);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .48);
}

.feature-icon {
    min-width: 62px;
    height: 62px;
    padding: 0 14px;
    border-radius: 999px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    background: rgba(213, 138, 30, 0.12);
    color: var(--primary-light);
    border: 1px solid rgba(213, 138, 30, 0.28);
    font-size: 1rem;
    font-weight: 800;
}

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

.features-4 .feature {
    padding: 28px 15px;
    min-height: 220px;
}

/* ========================================================== */
/* BANNER */
/* ========================================================== */

.banner {
    height: 765px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8), transparent 55%),
    linear-gradient(90deg, rgba(213, 138, 30, .12), transparent 50%);
}

.banner-content {
    position: absolute;
    z-index: 3;
    left: 70px;
    bottom: 70px;
    max-width: 670px;
}

/* ========================================================== */
/* STATS */
/* ========================================================== */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 4.6rem);
    color: var(--primary-light);
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    color: var(--muted);
    margin-top: 14px;
    font-size: 0.95rem;
}

/* ========================================================== */
/* CTA */
/* ========================================================== */

.cta {
    text-align: center;
    padding: 140px 0;
}

.cta .glass {
    max-width: 900px;
    margin: auto;
}

.cta p {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 32px;
}

/* ==========================================================
   FOOTER
   ========================================================== */

/* ==========================================================
   FOOTER
   ========================================================== */

footer {
    background: #040506;
    border-top: 1px solid var(--border);
    padding: 80px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.footer-brand p {
    margin-top: 24px;
    max-width: 420px;
    color: var(--muted);
    font-size: .98rem;
    line-height: 1.8;
}

.footer-navigation {
    width: 100%;
}

.footer-links {
    display: grid;
    grid-template-columns:
        1fr
        1fr
        auto;
    gap: 50px;
    align-items: start;
}

.footer-links div {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--muted);
    text-decoration: none;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--primary-light);
    transform: translateX(4px);
}

.footer-cta {
    justify-content: flex-start;
}

.footer-button {
    margin-top: 28px;
}

.footer-partenaire {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-partenaire img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: brightness(1.1);
}

@media (max-width: 900px) {

    .footer-links {
        grid-template-columns:1fr;
        gap: 25px;
    }

    .footer-cta {
        margin-top: 10px;
    }

}

/* =====================================================
   TIMELINE
   ===================================================== */
.roadmap {
    margin-top: 80px;
    overflow-x: auto;
    padding: 20px 0 30px;
}

.roadmap-row,
.roadmap-axis {
    min-width: 1050px;
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 28px;
    align-items: start;
}

.roadmap-row {
    margin-bottom: 34px;
}

.roadmap-bottom {
    margin-top: 34px;
}

.roadmap-card {
    background: linear-gradient(
        180deg,
        rgba(22, 28, 34, .86),
        rgba(10, 13, 16, .94)
    );
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    min-height: 135px;
    position: relative;
}

.roadmap-card strong {
    display: block;
    color: var(--white);
    font-size: 1rem;
    line-height: 1.25;
    margin-bottom: 10px;
}

.roadmap-card span {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    line-height: 1.5;
}

.production-card {
    border-color: rgba(127, 201, 107, .22);
}

.production-card strong {
    color: #7fc96b;
    font-size: 1.35rem;
}

.roadmap-axis {
    position: relative;
    height: 74px;
}

.roadmap-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 18px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--primary-dark),
        var(--primary),
        var(--primary-light)
    );
    box-shadow: 0 0 32px rgba(213, 138, 30, .38);
}

.roadmap-point {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 9px;
    z-index: 2;
}

.roadmap-point::before {
    content: "";
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-light);
    border: 7px solid var(--bg);
    box-shadow: 0 0 0 6px rgba(213, 138, 30, .22);
}

.roadmap-point span {
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: #0b0b0b;
    background: var(--primary-light);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: .8rem;
    font-weight: 800;
    white-space: nowrap;
}

.roadmap-top .roadmap-card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -34px;
    width: 2px;
    height: 34px;
    background: rgba(213, 138, 30, .55);
}

.roadmap-bottom {
    margin-top: 45px;
    display: grid;
    grid-template-columns:repeat(5, 1fr);
    gap: 28px;
    align-items: center;
}

.roadmap-value {
    text-align: center;
}

.roadmap-value strong {
    display: block;
    font-size: clamp(3rem, 4vw, 4.3rem);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(
        90deg,
        #b86e10,
        #d58a1e 30%,
        #f2b538 70%,
        #ffd36b
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .roadmap {
        margin-top: 50px;
    }
}

/* ========================================================== */
/* ANIMATIONS */
/* ========================================================== */

.fade {
    opacity: 0;
    transform: translateY(70px);
    transition: 1s ease;
}

.fade.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================================== */
/* PROGRESS + CURSOR */
/* ========================================================== */

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #ffb340, #d58a1e);
    z-index: 99999;
}


/* ========================================================== */
/* SCROLLBAR */
/* ========================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #050607;
}

::-webkit-scrollbar-thumb {
    background: #8c5a18;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ========================================================== */
/* RESPONSIVE */
/* ========================================================== */

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

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

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

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

@media (max-width: 768px) {
    .menu {
        display: none;
    }

    .nav-container {
        height: 76px;
    }

    .hero {
        text-align: left;
    }

    h1 {
        font-size: 2.5rem;
        letter-spacing: -2px;
    }

    h2 {
        font-size: 2.25rem;
    }

    section {
        padding: 85px 0;
    }

    .glass {
        padding: 32px;
    }

    .banner {
        height: 475px;
        border-radius: 20px;
    }

    .banner-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

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

    .button-outline {
        margin-left: 0;
        margin-top: 12px;
    }

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


}

.flow-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 32px;
    margin-top: 55px;
}

.flow-card {
    background: linear-gradient(
        180deg,
        rgba(22, 28, 34, .82),
        rgba(10, 13, 16, .90)
    );

    border: 1px solid var(--border);
    border-radius: var(--radius);

    padding: 42px;

    min-height: 320px;
}

.flow-arrow-large {

    position: relative;

    width: 100%;
    height: 16px;

    margin-top: 65px;

    border-radius: 999px;

    background: linear-gradient(
        90deg,
        #d58a1e 0%,
        #f2b52d 35%,
        #9ccf56 70%,
        #4CAF50 100%
    );

    box-shadow: 0 0 18px rgba(213, 138, 30, .25),
    0 0 18px rgba(76, 175, 80, .18);

}

.flow-arrow-large::after {

    content: "";

    position: absolute;

    right: -4px;
    top: 50%;

    width: 28px;
    height: 28px;

    border-top: 8px solid #4CAF50;
    border-right: 8px solid #4CAF50;

    transform: translateY(-50%) rotate(45deg);

}

.industrial-arrow {
    position: relative;
    width: 100%;
    height: 16px;
    margin-top: 50px;
    border-radius: 999px;
    background: linear-gradient(
        90deg,
        var(--primary-dark),
        var(--primary),
        var(--primary-light)
    );
    box-shadow: 0 0 24px rgba(213, 138, 30, .32);
}

.industrial-arrow::after {
    content: "";
    position: absolute;
    right: -4px;
    top: 50%;
    width: 28px;
    height: 28px;
    border-top: 8px solid var(--primary-light);
    border-right: 8px solid var(--primary-light);
    transform: translateY(-50%) rotate(45deg);
}

.flow-title {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.flow-title h3 {
    margin: 0;
}

.flow-number {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.5rem;
    font-weight: 800;

    color: white;

    flex-shrink: 0;
}

.flow-1 {
    background: #d58a1e;
}

.flow-2 {
    background: #dcbf36;
}

.flow-3 {
    background: #5eb85f;
}

.scale-stats {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 30px;
    margin-top: 55px;
}

.scale-stat {
    background: linear-gradient(
        180deg,
        rgba(22, 28, 34, .86),
        rgba(10, 13, 16, .94)
    );
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 44px;
    min-height: 360px;
    transition: var(--transition);
}

.scale-stat:hover {
    transform: translateY(-8px);
    border-color: var(--border-orange);
    box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
}

.scale-stat .stat-number {
    text-align: left;
    margin-bottom: 28px;
}

.scale-stat h3 {
    margin-bottom: 18px;
}

.scale-stat p {
    font-size: .98rem;
    line-height: 1.7;
}

@media (max-width: 1100px) {
    .scale-stats {
        grid-template-columns:1fr;
    }
}

/* ==========================================================
   DOUBLE GALLERY
   ========================================================== */

.double-gallery {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: 22px;
    margin: 35px 0;

}

.gallery-image {
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.gallery-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: .8s;
}

.gallery-image:hover img {
    transform: scale(1.05);
}

.gallery-description {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.gallery-description p {
    margin: auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

@media (max-width: 900px) {

    .double-gallery {
        grid-template-columns:1fr;
    }

    .gallery-image img {
        height: 380px;
    }

}

.technology-transition {
    padding: 130px 0;
}

.transition-panel {
    max-width: 980px;
    margin: auto;
    text-align: center;
    padding: 70px 60px;
    border-radius: var(--radius);
    background: radial-gradient(circle at top left, rgba(213, 138, 30, .18), transparent 38%),
    linear-gradient(180deg, rgba(22, 28, 34, .88), rgba(8, 10, 12, .96));
    border: 1px solid var(--border-orange);
    box-shadow: var(--shadow);
}

.transition-panel h2 {
    margin-left: auto;
    margin-right: auto;
}

.transition-panel p {
    margin: 0 auto 34px;
    max-width: 760px;
}

a.legale-link:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary-light);
}

/* ==========================================================
   MENTIONS LÉGALES
   ========================================================== */
.legal-content {
    max-width: 900px;
    margin: auto;
    padding: 60px;
}

.legal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 22px;
    line-height: 1.8;
    color: var(--text);
}

.legal-content strong {
    color: var(--white);
}

.legal-content a {
    color: var(--primary-light);
}

.legal-content hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 45px 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 35px 25px;
    }
}

/* ==========================================================
   FOOTER BOTTOM
   ========================================================== */
.footer-copyright {
    display: block;
    margin-top: 18px;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 500;
    letter-spacing: .8px;
    opacity: .75;
}

