:root {
    --bg-light: #f4f7f9;
    --bg-dark: #0d1c19;
    --bg-darker: #091311;
    --text-primary: #0d1c19;
    --text-white: #ffffff;
    --accent-orange: #f6d345;
    --accent-orange-hover: #e0be30;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* TOP BAR */
.top-bar {
    background-color: var(--bg-darker);
    color: var(--text-white);
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links a {
    margin-right: 15px;
}

.social-links a:hover,
.top-phone a:hover {
    color: var(--accent-orange);
}

/* NAVBAR */
.navbar {
    background-color: var(--bg-darker);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 90px;
    width: auto;
    display: block;
    margin: -22px 0;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-white);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-orange);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--accent-orange);
    color: var(--text-white);
    border-radius: 50%;
    font-size: 18px;
}

.btn-circle:hover {
    background-color: var(--accent-orange-hover);
}

.btn-outline {
    border: 2px solid var(--accent-orange);
    color: var(--text-white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.btn-outline:hover {
    background-color: var(--accent-orange);
    color: var(--text-white);
}

.btn-solid {
    background-color: var(--accent-orange);
    color: var(--text-white);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
}

.btn-solid:hover {
    background-color: var(--accent-orange-hover);
}

/* SPLIT HERO */
.split-hero {
    display: flex;
    min-height: calc(100vh - 120px);
    width: 100%;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.hero-left {
    background-color: var(--bg-light);
}

.hero-right {
    background-color: var(--bg-dark);
    color: var(--text-white);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    margin-left: -100px;
    padding-left: 120px;
}

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

.hero-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.hero-right h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 14px;
    margin-bottom: 40px;
    opacity: 0.8;
}

/* STATS */
.stats {
    padding: 100px 0;
    background-image: linear-gradient(rgba(9, 19, 17, 0.85), rgba(9, 19, 17, 0.95)), url('power_grid_background_1776688538426.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--text-white);
}

.section-title {
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--text-white);
}

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

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(246, 211, 69, 0.4);
}

.stat-label {
    font-weight: 600;
    font-size: 14px;
}

/* FOOTER */
.footer {
    background-color: var(--bg-darker);
    color: var(--text-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.white-logo {
    display: block;
    margin-bottom: 20px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-orange);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--accent-orange);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 900px) {
    .split-hero {
        flex-direction: column;
    }

    .hero-right {
        clip-path: none;
        margin-left: 0;
        padding-left: 60px;
    }

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

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

    .nav-links {
        display: none;
    }
}