: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;
    text-transform: uppercase;
}

.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;
    border: none;
    cursor: pointer;
}

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

/* PAGE HEADER */
.page-content {
    padding: 60px 0 100px;
}

.page-header {
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 40px;
    color: var(--bg-dark);
    margin-bottom: 20px;
}

.divider {
    height: 4px;
    width: 80px;
    background-color: var(--accent-orange);
}

/* CONSUMERS INFO */
.consumers-section {
    display: flex;
    gap: 40px;
}

.content-box {
    flex: 2;
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.content-box h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--bg-dark);
}

.content-box p {
    margin-bottom: 30px;
    color: #4f5565;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.benefit-card {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-orange);
    border-radius: 0 8px 8px 0;
}

.b-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.benefit-card p {
    margin-bottom: 0;
    font-size: 14px;
}

/* DARK BOX */
.dark-box {
    flex: 1;
    background-color: var(--bg-dark);
    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;
    color: var(--text-white);
    padding: 40px;
    border-radius: 12px;
}

.dark-box h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-white);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-row {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-orange);
    background: rgba(239, 127, 26, 0.1);
    box-shadow: 0 0 15px rgba(246, 211, 69, 0.2);
    text-shadow: 0 0 10px rgba(246, 211, 69, 0.4);
    padding: 10px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.step-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.mt-30 {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

/* 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) {
    .consumers-section {
        flex-direction: column;
    }

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

    .nav-links {
        display: none;
    }
}