/*
Theme Name: Eco Energy Rating
Author: Eco Energy Rating
Description: Custom energy technology and intelligence theme.
Version: 1.0
*/

:root {
    --green-dark: #123c2a;
    --green: #2f6b4f;
    --green-light: #7bc043;
    --cream: #f5f7f3;
    --white: #ffffff;
    --text: #1f2933;
    --muted: #667085;
    --border: #e5e9e5;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}


 /* HEADER */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0 0;
}

.site-header .container {
    display: flex;
    align-items: center;
    min-height: 64px;
    gap: 40px;
    position: relative;
}

.site-header .container::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -18px;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(123,192,67,0.7),
        rgba(255,255,255,0.12) 35%,
        rgba(255,255,255,0.12) 65%,
        rgba(123,192,67,0.25)
    );
}


/* LOGO */

.site-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.25s ease;
}

.logo-eco {
    color: var(--green-light);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -1.3px;
    line-height: 1;
}

.logo-name {
    color: var(--white);
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -0.9px;
    line-height: 1;
}

.site-logo small {
    padding: 3px 6px;
    border: 1px solid rgba(123,192,67,0.45);
    border-radius: 4px;
    color: var(--green-light);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
    line-height: 1;
    text-transform: uppercase;
}

.site-logo:hover {
    opacity: 0.88;
}


/* NAVIGATION */

.main-navigation {
    margin-left: auto;
}

.main-navigation ul {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
    white-space: nowrap;
}

.main-navigation li {
    white-space: nowrap;
}

.main-navigation a {
    position: relative;
    display: block;
    color: rgba(255,255,255,0.90);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.main-navigation a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--green-light);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item a {
    color: var(--white);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after {
    width: 20px;
}


/* HEADER CTA */

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px 11px 19px;
    border: 1px solid rgba(123,192,67,0.6);
    border-radius: 100px;
    background: rgba(123,192,67,0.08);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    transition: 0.25s ease;
}

.header-cta::after {
    content: "↗";
    font-size: 15px;
    line-height: 1;
    color: var(--green-light);
}

.header-cta:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: #102017;
    transform: translateY(-2px);
}

.header-cta:hover::after {
    color: #102017;
}


/* GENERAL */

.section {
    padding: 110px 0;
}

.eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--green-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.section-heading h2 {
    margin: 0 0 20px;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -2.5px;
}

.section-heading p {
    max-width: 620px;
    margin: 0;
    color: var(--muted);
    font-size: 17px;
}


/* BUTTONS */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.btn-primary {
    background: var(--green-light);
    color: #102017;
}

.btn-primary:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    border: 1px solid rgba(255,255,255,0.35);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--green-dark);
}

.btn-light {
    background: var(--white);
    color: var(--green-dark);
}

/* =========================
   HERO
========================= */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--green-dark);
    color: var(--white);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-background img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(7, 30, 21, 0.94) 0%,
            rgba(7, 30, 21, 0.82) 35%,
            rgba(7, 30, 21, 0.48) 65%,
            rgba(7, 30, 21, 0.25) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;

    padding-top: 145px;
    padding-bottom: 150px;
}

.hero-text {
    max-width: 760px;

    /*
     * Creates a more balanced editorial position
     * inside the hero.
     */
    margin-left: 7%;
}

.hero h1 {
    max-width: 820px;
    margin: 0 0 28px;

    color: var(--white);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(56px, 7vw, 92px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -4px;
}
.hero-text > p {
    max-width: 620px;
    margin: 0 0 36px;

    color: rgba(255,255,255,0.82);
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================
   HERO BUTTONS
========================= */

.hero .btn-primary {
    padding: 15px 25px;
}

.hero .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 15px 25px;

    border: 1px solid rgba(255,255,255,0.42);
    background: rgba(255,255,255,0.06);

    backdrop-filter: blur(6px);
}

.hero .btn-secondary span {
    font-size: 16px;
    line-height: 1;
}


/* =========================
   HERO BOTTOM CAPABILITIES
========================= */

.hero-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;

    border-top: 1px solid rgba(255,255,255,0.18);

    background: rgba(7,30,21,0.58);

    backdrop-filter: blur(8px);
}

.hero-bottom-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.hero-bottom-inner span {
    padding: 18px 20px;

    border-right: 1px solid rgba(255,255,255,0.12);

    color: rgba(255,255,255,0.72);

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-bottom-inner span:first-child {
    border-left: 1px solid rgba(255,255,255,0.12);
}


/* =========================
   HERO MOBILE
========================= */

@media (max-width: 700px) {

    .hero {
        min-height: 720px;
    }

    .hero-background img {
        object-position: 65% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(7,30,21,0.78) 0%,
                rgba(7,30,21,0.88) 65%,
                rgba(7,30,21,0.97) 100%
            );
    }

    .hero-content {
        padding-top: 140px;
        padding-bottom: 150px;
    }

    .hero-text {
        max-width: 100%;
        margin-left: 0;
    }

    .hero h1 {
        font-size: clamp(46px, 12vw, 64px);
        font-weight: 400;
        letter-spacing: -2.5px;
        line-height: 1;
    }

    .hero-text > p {
        font-size: 16px;
        line-height: 1.6;
    }

    .hero-bottom-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-bottom-inner span {
        padding: 13px 12px;
        font-size: 9px;
    }
}

/* =========================
   SOLUTIONS
========================= */

.solutions {
    background: var(--white);
}

.solutions .section-heading {
    max-width: 820px;
    margin-bottom: 70px;
}

.solutions .section-heading p {
    max-width: 680px;
}


/* =========================
   SOLUTION LIST
========================= */

.solutions-list {
    display: flex;
    flex-direction: column;
}


/* =========================
   SOLUTION FEATURE
========================= */

.solution-feature {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    min-height: 470px;
    border-top: 1px solid var(--border);
}

.solution-feature:last-child {
    border-bottom: 1px solid var(--border);
}


/* Alternate image/content position */

.solution-feature-reverse {
    grid-template-columns: 0.85fr 1.15fr;
}

.solution-feature-reverse .solution-image {
    order: 2;
}

.solution-feature-reverse .solution-content {
    order: 1;
}


/* =========================
   SOLUTION IMAGE
========================= */

.solution-image {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: #e9eee9;
}

.solution-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(18, 60, 42, 0.04),
        rgba(18, 60, 42, 0)
    );
    pointer-events: none;
}

.solution-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.solution-feature:hover .solution-image img {
    transform: scale(1.035);
}


/* =========================
   SOLUTION CONTENT
========================= */

.solution-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 65px 70px;

    background: #f5f7f3;
}

.solution-feature-reverse .solution-content {
    background: var(--white);
}

.solution-number {
    display: block;
    margin-bottom: 28px;

    color: var(--green-light);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.solution-label {
    display: block;
    margin-bottom: 15px;

    color: var(--green);

    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.solution-content h3 {
    margin: 0 0 20px;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -1.8px;
}

.solution-content p {
    max-width: 500px;
    margin: 0;

    color: var(--muted);

    font-size: 16px;
    line-height: 1.7;
}

.solution-content a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;
    margin-top: 32px;

    color: var(--green-dark);

    font-size: 13px;
    font-weight: 800;

    transition: 0.25s ease;
}

.solution-content a span {
    color: var(--green-light);
    font-size: 17px;
    transition: transform 0.25s ease;
}

.solution-content a:hover {
    color: var(--green);
}

.solution-content a:hover span {
    transform: translate(3px, -3px);
}


/* =========================
   SOLUTIONS TABLET
========================= */

@media (max-width: 900px) {

    .solutions .section-heading {
        margin-bottom: 55px;
    }

    .solution-feature,
    .solution-feature-reverse {
        grid-template-columns: 1fr;
    }

    .solution-feature-reverse .solution-image {
        order: 1;
    }

    .solution-feature-reverse .solution-content {
        order: 2;
    }

    .solution-image {
        min-height: 360px;
    }

    .solution-content {
        min-height: 360px;
        padding: 50px 45px;
    }
}


/* =========================
   SOLUTIONS MOBILE
========================= */

@media (max-width: 600px) {

    .solutions .section-heading {
        margin-bottom: 45px;
    }

    .solution-image {
        min-height: 260px;
    }

    .solution-content {
        min-height: auto;
        padding: 38px 25px 42px;
    }

    .solution-number {
        margin-bottom: 20px;
    }

    .solution-label {
        font-size: 10px;
    }

    .solution-content h3 {
        margin-bottom: 16px;
        font-size: 34px;
        letter-spacing: -1.2px;
    }

    .solution-content p {
        font-size: 15px;
    }

    .solution-content a {
        margin-top: 25px;
    }
}

/* =========================================================
   ENERGY INTELLIGENCE
========================================================= */

.intelligence {
    background: #173d2c;
    color: #ffffff;
}


/* =========================================================
   INTRO
========================================================= */

.intelligence-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 110px;
    align-items: end;

    padding-bottom: 75px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}


/* =========================================================
   EYEBROW
========================================================= */

.intelligence .eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    color: #91c95b;

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.7px;

    text-transform: uppercase;
}


/* =========================================================
   MAIN HEADING
========================================================= */

.intelligence-heading h2 {
    max-width: 720px;

    margin: 0;

    color: #f4f6f2;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 5.7vw, 74px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.intelligence-description {
    max-width: 500px;
    padding-bottom: 5px;
}

.intelligence-description p {
    margin: 0 0 30px;

    color: rgba(244, 246, 242, 0.68);

    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   MAIN LINK
========================================================= */

.intelligence-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #f4f6f2;

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;

    transition: color 0.25s ease;
}

.intelligence-link span {
    color: #91c95b;

    font-size: 16px;

    transition: transform 0.25s ease;
}

.intelligence-link:hover {
    color: #ffffff;
}

.intelligence-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   INTELLIGENCE VISUAL
========================================================= */

.intelligence-visual {
    position: relative;
    overflow: hidden;

    margin-top: 70px;

    border: 1px solid #bfc7bf;

    background: #dfe4de;
    color: #24382c;

    box-shadow: none;
}


/* =========================================================
   VISUAL HEADER
========================================================= */

.intelligence-visual-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    min-height: 58px;

    padding: 0 24px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    background: #244536;
}


/* =========================================================
   VISUAL SYSTEM TITLE
========================================================= */

.visual-system-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.visual-system-title strong {
    color: #f2f5f1;

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   SYSTEM INDICATOR
========================================================= */

.system-indicator {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #91c95b;
}


/* =========================================================
   VISUAL STATUS
========================================================= */

.visual-system-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.visual-system-status span {
    color: rgba(242, 245, 241, 0.58);

    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.1px;

    text-transform: uppercase;
}

.status-line {
    width: 22px;
    height: 1px;

    background: rgba(242, 245, 241, 0.25);
}


/* =========================================================
   ENERGY SYSTEM
========================================================= */

.energy-system {
    display: grid;
    grid-template-columns: 0.85fr 1.4fr 0.85fr;

    min-height: 410px;

    background: #dfe4de;
}


/* =========================================================
   SYSTEM LABEL
========================================================= */

.system-label {
    margin-bottom: 22px;

    color: #617166;

    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================================
   ENERGY SOURCES
========================================================= */

.energy-sources {
    padding: 38px 30px;

    border-right: 1px solid #c4ccc4;

    background: #eef0eb;
}


/* =========================================================
   ENERGY SOURCE
========================================================= */

.energy-source {
    display: grid;
    grid-template-columns: 38px 1fr;

    gap: 13px;

    padding: 19px 0;

    border-bottom: 1px solid #d5dad4;
}

.energy-source:last-child {
    border-bottom: none;
}


/* =========================================================
   SOURCE ICON
========================================================= */

.source-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid #c0c9c1;

    background: #e8ebe6;

    color: #506357;

    font-family: Arial, sans-serif;
    font-size: 16px;
}


/* =========================================================
   SOURCE INFORMATION
========================================================= */

.source-info {
    display: flex;
    flex-direction: column;
    gap: 3px;

    padding-top: 1px;
}

.source-info strong {
    color: #24382c;

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.source-info span {
    color: #6f7c73;

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
}


/* =========================================================
   SOURCE STATUS
========================================================= */

.source-status {
    grid-column: 2;

    display: flex;
    align-items: center;
    gap: 6px;

    margin-top: 5px;

    color: #718077;

    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
}

.status-dot {
    width: 6px;
    height: 6px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #7f9e59;
}

.status-dot.muted {
    background: #aab3ad;
}


/* =========================================================
   ENERGY SYSTEM OVERVIEW
========================================================= */

.energy-flow-panel {
    position: relative;

    padding: 38px 34px;

    border-right: 1px solid #c4ccc4;

    background: #d6ddd6;
}


/* =========================================================
   PANEL HEADING
========================================================= */

.flow-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}

.flow-heading span {
    color: #53645a;

    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.flow-heading small {
    color: #7a857e;

    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   SYSTEM OVERVIEW
========================================================= */

.system-overview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    width: 100%;
}


/* =========================================================
   SYSTEM OVERVIEW ITEM
========================================================= */

.system-overview-item {
    min-height: 190px;

    padding: 22px 18px;

    border: 1px solid #bfc8c0;

    background: #eef0eb;

    transition:
        border-color 0.25s ease,
        background 0.25s ease;
}

.system-overview-item:hover {
    border-color: #91a580;

    background: #f1f3ee;
}


/* =========================================================
   OVERVIEW ICON
========================================================= */

.overview-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 24px;

    border: 1px solid #c2cbc3;

    background: #e5e9e3;

    color: #506357;

    font-family: Arial, sans-serif;
    font-size: 16px;
}


/* =========================================================
   OVERVIEW CONTENT
========================================================= */

.overview-content {
    display: flex;
    flex-direction: column;
}


/* =========================================================
   OVERVIEW LABEL
========================================================= */

.overview-label {
    margin-bottom: 8px;

    color: #728078;

    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;

    text-transform: uppercase;
}


/* =========================================================
   OVERVIEW TITLE
========================================================= */

.overview-content strong {
    color: #24382c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.1;
}


/* =========================================================
   OVERVIEW DESCRIPTION
========================================================= */

.overview-content p {
    margin: 10px 0 0;

    color: #718078;

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    line-height: 1.55;
}


/* =========================================================
   OVERVIEW NOTE
========================================================= */

.overview-note {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 24px;
    padding-top: 18px;

    border-top: 1px solid #bec7bf;
}


/* =========================================================
   NOTE MARK
========================================================= */

.overview-note-mark {
    width: 7px;
    height: 7px;

    flex-shrink: 0;

    background: #91c95b;
}


/* =========================================================
   NOTE TEXT
========================================================= */

.overview-note p {
    max-width: 420px;

    margin: 0;

    color: #69776e;

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    line-height: 1.5;
}


/* =========================================================
   OPERATIONAL INSIGHT
========================================================= */

.energy-insight {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 38px 30px;

    background: #eef0eb;
}


/* =========================================================
   INSIGHT HEADING
========================================================= */

.insight-heading {
    margin-bottom: 18px;

    color: #24382c;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 29px;
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1px;
}


/* =========================================================
   INSIGHT TEXT
========================================================= */

.energy-insight p {
    max-width: 280px;

    margin: 0 0 25px;

    color: #68756d;

    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.7;
}


/* =========================================================
   VISUAL EXPLORE
========================================================= */

.visual-explore {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    width: fit-content;

    color: #557b43;

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

.visual-explore span {
    font-size: 14px;

    transition: transform 0.25s ease;
}

.visual-explore:hover {
    color: #365d3d;
}

.visual-explore:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   DATA STRIP
========================================================= */

.intelligence-visual-bottom {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid #c4ccc4;

    background: #e8ebe5;
}


/* =========================================================
   DATA STRIP ITEM
========================================================= */

.intelligence-visual-bottom > div {
    display: flex;
    flex-direction: column;
    gap: 5px;

    min-height: 74px;

    padding: 16px 20px;

    border-right: 1px solid #cdd4cd;
}

.intelligence-visual-bottom > div:last-child {
    border-right: none;
}


/* =========================================================
   DATA LABEL
========================================================= */

.data-label {
    color: #78847c;

    font-family: Inter, Arial, sans-serif;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   DATA VALUE
========================================================= */

.intelligence-visual-bottom strong {
    color: #405a4a;

    font-family: Inter, Arial, sans-serif;
    font-size: 11px;
    font-weight: 800;
}


/* =========================================================
   CAPABILITIES
========================================================= */

.intelligence-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 55px;

    margin-top: 70px;
}


/* =========================================================
   CAPABILITY
========================================================= */

.intelligence-capabilities article {
    display: grid;
    grid-template-columns: 10px 1fr;

    gap: 18px;

    padding-top: 22px;

    border-top: 1px solid rgba(255, 255, 255, 0.20);
}


/* =========================================================
   CAPABILITY MARK
========================================================= */

.capability-mark {
    width: 7px;
    height: 7px;

    margin-top: 7px;

    background: #91c95b;
}


/* =========================================================
   CAPABILITY HEADING
========================================================= */

.intelligence-capabilities h3 {
    margin: 0 0 10px;

    color: #f4f6f2;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
}


/* =========================================================
   CAPABILITY TEXT
========================================================= */

.intelligence-capabilities p {
    max-width: 330px;

    margin: 0;

    color: rgba(244, 246, 242, 0.58);

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    /* -----------------------------------------------------
       INTRO
    ----------------------------------------------------- */

    .intelligence-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* -----------------------------------------------------
       ENERGY SYSTEM
    ----------------------------------------------------- */

    .energy-system {
        grid-template-columns: 1fr;
    }


    /* -----------------------------------------------------
       ENERGY SOURCES
    ----------------------------------------------------- */

    .energy-sources {
        border-right: none;
        border-bottom: 1px solid #c4ccc4;
    }


    /* -----------------------------------------------------
       SYSTEM OVERVIEW
    ----------------------------------------------------- */

    .energy-flow-panel {
        border-right: none;
        border-bottom: 1px solid #c4ccc4;
    }

    .system-overview {
        grid-template-columns: repeat(3, 1fr);
    }


    /* -----------------------------------------------------
       OPERATIONAL INSIGHT
    ----------------------------------------------------- */

    .energy-insight {
        min-height: 280px;
    }


    /* -----------------------------------------------------
       CAPABILITIES
    ----------------------------------------------------- */

    .intelligence-capabilities {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    /* -----------------------------------------------------
       DATA STRIP
    ----------------------------------------------------- */

    .intelligence-visual-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .intelligence-visual-bottom > div:nth-child(2) {
        border-right: none;
    }

    .intelligence-visual-bottom > div:nth-child(-n + 3) {
        border-bottom: 1px solid #cdd4cd;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------------------
       INTRO
    ----------------------------------------------------- */

    .intelligence-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .intelligence-description p {
        font-size: 15px;
    }


    /* -----------------------------------------------------
       DASHBOARD
    ----------------------------------------------------- */

    .intelligence-visual {
        margin-top: 50px;
    }

    .intelligence-visual-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;

        padding: 15px 18px;
    }

    .visual-system-status {
        display: none;
    }


    /* -----------------------------------------------------
       PANELS
    ----------------------------------------------------- */

    .energy-sources,
    .energy-flow-panel,
    .energy-insight {
        padding: 30px 20px;
    }


    /* -----------------------------------------------------
       SYSTEM OVERVIEW
    ----------------------------------------------------- */

    .flow-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;

        margin-bottom: 22px;
    }

    .system-overview {
        grid-template-columns: 1fr;

        gap: 10px;
    }

    .system-overview-item {
        min-height: auto;

        padding: 20px;
    }

    .overview-icon {
        margin-bottom: 16px;
    }

    .overview-content strong {
        font-size: 21px;
    }

    .overview-note {
        align-items: flex-start;

        margin-top: 20px;
        padding-top: 16px;
    }


    /* -----------------------------------------------------
       DATA STRIP
    ----------------------------------------------------- */

    .intelligence-visual-bottom {
        grid-template-columns: 1fr;
    }

    .intelligence-visual-bottom > div {
        min-height: auto;

        border-right: none;
        border-bottom: 1px solid #cdd4cd;
    }

    .intelligence-visual-bottom > div:last-child {
        border-bottom: none;
    }


    /* -----------------------------------------------------
       CAPABILITIES
    ----------------------------------------------------- */

    .intelligence-capabilities {
        margin-top: 50px;
    }

    .intelligence-capabilities article {
        gap: 15px;
    }

    .intelligence-capabilities h3 {
        font-size: 21px;
    }
}

/* =========================================================
   WHY US
   Editorial / Established Engineering Company Style
========================================================= */

.why-us {
    background: #ffffff;
    color: var(--green-dark);
}


/* =========================================================
   INTRO
========================================================= */

.why-intro {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 110px;
    align-items: end;

    padding-bottom: 85px;

    border-bottom: 1px solid var(--border);
}


/* =========================================================
   HEADING
========================================================= */

.why-heading h2 {
    max-width: 700px;

    margin: 0;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 5.7vw, 74px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.why-description {
    max-width: 510px;
    padding-bottom: 5px;
}

.why-description p {
    margin: 0 0 20px;

    color: var(--muted);

    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}

.why-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   WHY POINTS
========================================================= */

.why-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    margin-top: 0;
}


/* =========================================================
   INDIVIDUAL POINT
========================================================= */

.why-points article {
    display: grid;
    grid-template-columns: 5px 1fr;
    gap: 22px;

    min-height: 220px;

    padding: 38px 40px 20px 0;

    border-right: 1px solid var(--border);
}

.why-points article + article {
    padding-left: 40px;
}

.why-points article:last-child {
    border-right: none;
}


/* =========================================================
   GREEN ACCENT
========================================================= */

.why-point-line {
    width: 4px;
    height: 38px;

    margin-top: 5px;

    background: var(--green-light);
}


/* =========================================================
   POINT HEADING
========================================================= */

.why-points h3 {
    max-width: 280px;

    margin: 0 0 14px;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -0.7px;
}


/* =========================================================
   POINT TEXT
========================================================= */

.why-points p {
    max-width: 310px;

    margin: 0;

    color: var(--muted);

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .why-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .why-points {
        grid-template-columns: 1fr;
    }

    .why-points article,
    .why-points article + article {
        min-height: auto;

        padding: 30px 0;

        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .why-points article:last-child {
        border-bottom: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .why-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .why-description p {
        font-size: 15px;
    }

    .why-points article,
    .why-points article + article {
        grid-template-columns: 4px 1fr;
        gap: 18px;

        padding: 27px 0;
    }

    .why-points h3 {
        font-size: 23px;
    }

    .why-points p {
        font-size: 14px;
    }

}

/* =========================================================
   SECTORS
========================================================= */

.sectors {
    background: #173d2c;
    color: #ffffff;
}


/* =========================================================
   INTRO
========================================================= */

.sectors-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 110px;
    align-items: end;

    padding-bottom: 75px;

    border-bottom: 1px solid rgba(255,255,255,0.18);
}


/* =========================================================
   HEADING
========================================================= */

.sectors .eyebrow {
    color: #91c95b;
}

.sectors-heading h2 {
    max-width: 700px;

    margin: 0;

    color: #f4f6f2;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 5.7vw, 74px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sectors-description {
    max-width: 500px;
    padding-bottom: 5px;
}

.sectors-description p {
    margin: 0;

    color: rgba(244,246,242,0.68);

    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   SECTOR LIST
========================================================= */

.sector-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    margin-top: 0;
}


/* =========================================================
   SECTOR ITEM
========================================================= */

.sector-item {
    display: grid;
    grid-template-columns: 45px 1fr;
    column-gap: 18px;

    min-height: 190px;

    padding: 35px 45px 35px 0;

    border-bottom: 1px solid rgba(255,255,255,0.14);
}

.sector-item:nth-child(even) {
    padding-left: 45px;
    border-left: 1px solid rgba(255,255,255,0.14);
}

.sector-item:nth-last-child(-n+2) {
    border-bottom: none;
}


/* =========================================================
   NUMBER
========================================================= */

.sector-item > span {
    color: #91c95b;

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}


/* =========================================================
   TITLE
========================================================= */

.sector-item strong {
    display: block;

    margin-bottom: 12px;

    color: #f4f6f2;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.7px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.sector-item p {
    grid-column: 2;

    max-width: 330px;

    margin: 0;

    color: rgba(244,246,242,0.58);

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.65;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .sectors-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .sector-list {
        grid-template-columns: 1fr;
    }

    .sector-item,
    .sector-item:nth-child(even) {
        padding: 30px 0;

        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.14);
    }

    .sector-item:last-child {
        border-bottom: none;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .sectors-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .sectors-description p {
        font-size: 15px;
    }

    .sector-item {
        grid-template-columns: 35px 1fr;
        column-gap: 12px;
    }

    .sector-item strong {
        font-size: 24px;
    }

    .sector-item p {
        grid-column: 2;
    }

}

/* =========================================================
   PROJECTS
========================================================= */

.projects {
    background: #f4f5f1;
    color: var(--green-dark);
}


/* =========================================================
   INTRO
========================================================= */

.projects-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 110px;
    align-items: end;

    padding-bottom: 70px;
}


/* =========================================================
   HEADING
========================================================= */

.projects .eyebrow {
    color: #668f3f;
}

.projects-heading h2 {
    max-width: 720px;

    margin: 0;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 5.7vw, 74px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.projects-description {
    max-width: 500px;
    padding-bottom: 5px;
}

.projects-description p {
    margin: 0 0 28px;

    color: var(--muted);

    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   PROJECT LINK
========================================================= */

.projects-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: var(--green-dark);

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.projects-link span {
    color: var(--green-light);

    font-size: 16px;

    transition: transform 0.25s ease;
}

.projects-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   FEATURE PROJECT
========================================================= */

.projects-feature {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;

    min-height: 500px;

    border-top: 1px solid #cdd5ce;
    border-bottom: 1px solid #cdd5ce;
}


/* =========================================================
   IMAGE
========================================================= */

.projects-feature-image {
    overflow: hidden;

    background: #dfe5df;
}

.projects-feature-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.projects-feature:hover .projects-feature-image img {
    transform: scale(1.025);
}


/* =========================================================
   CONTENT
========================================================= */

.projects-feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 60px 55px;

    background: #ffffff;
}


/* =========================================================
   LABEL
========================================================= */

.project-label {
    display: block;

    margin-bottom: 18px;

    color: #668f3f;

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   PROJECT TITLE
========================================================= */

.projects-feature-content h3 {
    margin: 0 0 20px;

    color: var(--green-dark);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -1.8px;
}


/* =========================================================
   PROJECT DESCRIPTION
========================================================= */

.projects-feature-content p {
    max-width: 390px;

    margin: 0;

    color: var(--muted);

    font-family: Inter, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   PROJECT CTA
========================================================= */

.projects-feature-content > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    width: fit-content;

    margin-top: 30px;

    color: var(--green-dark);

    font-family: Inter, Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
}

.projects-feature-content > a span {
    color: var(--green-light);

    font-size: 16px;

    transition: transform 0.25s ease;
}

.projects-feature-content > a:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .projects-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .projects-feature {
        grid-template-columns: 1fr;
    }

    .projects-feature-image {
        min-height: 380px;
    }

    .projects-feature-content {
        min-height: 360px;
        padding: 50px 45px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .projects-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .projects-description p {
        font-size: 15px;
    }

    .projects-feature-image {
        min-height: 270px;
    }

    .projects-feature-content {
        min-height: auto;
        padding: 38px 25px 42px;
    }

    .projects-feature-content h3 {
        font-size: 34px;
        letter-spacing: -1.2px;
    }

}

/* =========================================================
   INSIGHTS
========================================================= */

.insights {
    background: #173d2c;
    color: #ffffff;
}


/* =========================================================
   INTRO
========================================================= */

.insights-intro {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 110px;
    align-items: end;

    padding-bottom: 75px;

    border-bottom: 1px solid rgba(255,255,255,0.16);
}


/* =========================================================
   HEADING
========================================================= */

.insights .eyebrow {
    color: #91c95b;
}

.insights-heading h2 {
    max-width: 700px;

    margin: 0;

    color: #f4f6f2;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(50px, 5.7vw, 74px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -3px;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.insights-description {
    max-width: 500px;
    padding-bottom: 5px;
}

.insights-description p {
    margin: 0 0 28px;

    color: rgba(244,246,242,0.68);

    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
}


/* =========================================================
   MAIN LINK
========================================================= */

.insights-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: #f4f6f2;

    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;

    transition: color 0.25s ease;
}

.insights-link span {
    color: #91c95b;

    font-size: 16px;

    transition: transform 0.25s ease;
}

.insights-link:hover {
    color: #ffffff;
}

.insights-link:hover span {
    transform: translate(3px, -3px);
}


/* =========================================================
   INSIGHT LIST
========================================================= */

.insights-list {
    display: flex;
    flex-direction: column;
}


/* =========================================================
   INSIGHT ITEM
========================================================= */

.insight-item {
    position: relative;

    display: grid;
    grid-template-columns: 180px 1fr 35px;
    align-items: center;
    gap: 35px;

    min-height: 150px;

    padding: 30px 0;

    border-bottom: 1px solid rgba(255,255,255,0.14);

    color: inherit;

    transition:
        padding 0.3s ease,
        background 0.3s ease;
}

.insight-item:hover {
    padding-left: 15px;
    padding-right: 15px;

    background: rgba(255,255,255,0.045);
}


/* =========================================================
   META
========================================================= */

.insight-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.insight-meta span:first-child {
    color: #91c95b;

    font-family: Inter, Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.insight-meta span:last-child {
    color: rgba(244,246,242,0.40);

    font-family: Inter, Arial, sans-serif;
    font-size: 10px;
    font-weight: 700;
}


/* =========================================================
   TITLE
========================================================= */

.insight-item h3 {
    max-width: 700px;

    margin: 0;

    color: #f4f6f2;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(25px, 3vw, 34px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -1px;
}


/* =========================================================
   ARROW
========================================================= */

.insight-arrow {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(244,246,242,0.28);

    color: #f4f6f2;

    font-family: Inter, Arial, sans-serif;
    font-size: 15px;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.insight-item:hover .insight-arrow {
    border-color: #91c95b;
    background: #91c95b;
    color: #173d2c;

    transform: translate(2px, -2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .insights-intro {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .insight-item {
        grid-template-columns: 140px 1fr 35px;
        gap: 25px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .insights-heading h2 {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .insights-description p {
        font-size: 15px;
    }

    .insight-item {
        grid-template-columns: 1fr 30px;
        gap: 12px;

        min-height: 145px;

        padding: 25px 0;
    }

    .insight-meta {
        grid-column: 1;
    }

    .insight-item h3 {
        grid-column: 1;

        font-size: 25px;
    }

    .insight-arrow {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .insight-item:hover {
        padding-left: 8px;
        padding-right: 8px;
    }

}

/* CTA */

.cta {
    position: relative;
    overflow: hidden;
    background: #f4f5f1;
    color: #173d2c;
    text-align: center;
    border-top: 1px solid #d9ddd8;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cta .eyebrow {
    margin-bottom: 22px;
    color: #668f3f;
}

.cta h2 {
    margin: 0 0 25px;
    color: #173d2c;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 76px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -3px;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 34px;
    color: #66736b;
    font-family: Inter, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    background: #173d2c;
    color: #ffffff;
    border: 1px solid #173d2c;
    font-family: Inter, Arial, sans-serif;
    font-size: 13px;
    font-weight: 800;
}

.cta .btn-primary span {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.cta .btn-primary:hover {
    background: #668f3f;
    border-color: #668f3f;
    transform: translateY(-2px);
}

.cta .btn-primary:hover span {
    transform: translate(3px, -3px);
}

/* FOOTER */

.site-footer {
    padding: 35px 0;
    background: #0c281c;
    color: rgba(255,255,255,0.55);
    text-align: center;
    font-size: 13px;
}


/* MOBILE */

@media (max-width: 900px) {

    .main-navigation ul {
        gap: 15px;
    }

    .hero-content,
    .intelligence-content {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding-top: 150px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 600px) {

    .container {
        width: min(100% - 32px, 1180px);
    }

    .site-header {
        position: absolute;
    }

    .main-navigation,
    .header-cta {
        display: none;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 75px 0;
    }

    .energy-dashboard {
        animation: none;
    }
}

.energy-dashboard {
    animation: dashboardFloat 6s ease-in-out infinite;
}

@keyframes dashboardFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.chart-line {
    animation: chartPulse 4s ease-in-out infinite;
}

@keyframes chartPulse {
    0%, 100% {
        opacity: 0.75;
    }

    50% {
        opacity: 1;
    }
}

/* =========================================================
   GLOBAL TYPOGRAPHY
   Established Energy / Engineering Company Style
========================================================= */

/* Main section headings */
.section-heading h2,
.intelligence-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -2px;
}

/* Large feature headings */
.solution-content h3,
.why-grid h3,
.cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
}

/* Body copy */
body,
p {
    font-family: Inter, Arial, sans-serif;
}

/* Navigation and interface elements stay technical/clean */
.main-navigation a,
.header-cta,
.btn,
.eyebrow,
.solution-label,
.solution-number,
.intelligence-link,
.visual-explore,
.system-label,
.data-label {
    font-family: Inter, Arial, sans-serif;
}