:root {
    --primary: #0f4c75;
    --secondary: #1a7a96;
    --accent: #f0a500;
    --text: #333;
    --bg: #f8f9fa;
    --cta-yellow: #ffcc00;
    --cta-blue: #0f4c75;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

/* Nav */
.top-menu {
    background: white;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--cta-blue);
    border: 2px solid var(--cta-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    background: white;
}

.top-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.top-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

.top-menu a:hover {
    color: var(--secondary);
}

.cta-nav {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 5px;
}

/* Hero */
.hero {
    position: relative;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0 10px 0;
    min-height: 720px;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    padding: 0 2rem 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    margin-top: 30px;
    line-height: 1.2;
    font-family: Arial, sans-serif;
    color: var(--cta-yellow);
}

.hero-columns {
    display: grid;
    grid-template-columns: auto auto;
    gap: 3rem;
    width: auto;
    margin-bottom: 0.5rem;
    align-items: stretch;
    justify-content: center;
}

.hero-col {
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.hero-bullets {
    list-style: none;
    font-size: 1.6rem;
    margin-bottom: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero-bullets li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 2rem;
    line-height: 1.4;
    display: block;
}

.hero-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.2;
    top: -0.1rem;
}

.hero-bullets ul.sub-bullets li {
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: flex-start;
}

.hero-bullets ul.sub-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 2rem;
    line-height: 1;
    top: -0.2rem;
}

.scroller-inner img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    margin: 0 1.5rem;
}

.hero-urgency {
    font-size: 1.8rem;
    font-weight: 600; 
    margin-top: 0.3rem;
    margin-bottom: 0.2rem;
    color: white;
    max-width: 800px;
    line-height: 1.4;
    font-family: Arial, sans-serif;
}

.hero-urgency-small {
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 0.3rem;
    color: white;
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
    margin-bottom: 0;
    padding-bottom: 0.3rem;
}

.cta-notes {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.cta-disclaimer {
    font-size: 0.9rem;
    color: white;
    font-weight: 400;
}

.cta-requirements {
    font-size: 0.9rem;
    color: white;
    font-weight: 400;
}

.highlight-everyone {
    color: var(--cta-yellow);
}

.power-bill-line {
    display: block;
    width: 100%;
    padding-left: 0;
    margin-top: 0.2rem;
    margin-bottom: 0.2rem;
}

.qualify-btn {
    background: var(--cta-yellow) !important;
    color: var(--cta-blue) !important; 
    border: none !important;
    padding: 1.1rem 3rem !important;
    font-size: 1.5rem !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
    margin-bottom: 0;
    font-weight: bold !important;
}

.qualify-btn:hover {
    transform: scale(1.05);
    background: #ffe066 !important;
}

.utility-warning {
    background: #fff;
    padding: 1.5rem 5%;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: #cc0000;
    text-transform: uppercase;
    border-bottom: 2px solid #eee;
}

/* Business Section */
.business-section {
    padding: 4rem 10%;
    background: #f0f4f5;
    text-align: center;
}

.business-section h2 {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.business-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.business-cta-btn {
    background: var(--cta-blue) !important;
    color: var(--cta-yellow) !important;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.business-cta-btn:hover {
    transform: scale(1.05);
}

/* Footer & Extra CTA */
.big-cta-container {
    padding: 4rem 10%;
    background: white;
    text-align: center;
}

.big-cta-btn {
    background: var(--cta-yellow) !important;
    color: var(--cta-blue) !important;
    border: none !important;
    padding: 2.2rem 6rem !important;
    font-size: 3rem !important;
    border-radius: 100px !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
    font-weight: bold !important;
    cursor: pointer;
    transition: transform 0.3s;
}

.big-cta-btn:hover {
    transform: scale(1.05);
}

.site-footer {
    background: var(--primary);
    color: white;
    padding: 4rem 10% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-col p, .footer-col a {
    color: #cbdadb;
    text-decoration: none;
    margin-bottom: 0.8rem;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer-socials a {
    font-size: 1.5rem;
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: #cbdadb;
}

/* Media Scroller - Reduced by 35% */
.media-scroller {
    background: white;
    padding: 1.3rem 5%;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.media-headline {
    text-align: left;
    font-size: 0.65rem;
    font-weight: bold;
    color: #666;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroller-inner {
    display: flex;
    align-items: center;
    gap: 2.6rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.scroller-inner span {
    font-weight: bold;
    color: #999;
    white-space: nowrap;
    font-size: 0.85rem;
}

.scroller-inner img {
    height: 39px;
    width: auto;
    max-width: 98px;
    object-fit: contain;
    filter: none;
    opacity: 1;
    margin: 0 1rem;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Benefits */
.benefits {
    padding: 5rem 10%;
    text-align: center;
}

.benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    background: white;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    text-align: center;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 0.8rem;
    display: block;
}

.benefit-item h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
    font-size: 1.1rem;
}

.benefit-item p {
    font-size: 0.9rem;
    margin: 0;
}

.benefit-grid-centered {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.benefit-grid-centered .benefit-item {
    width: auto;
    min-width: 180px;
    max-width: 220px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    overflow-y: auto;
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 3rem;
    width: 95%;
    max-width: 650px;
    border-radius: 10px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    font-family: Arial, sans-serif;
}

.form-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.utility-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    cursor: pointer;
}

.utility-options input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

.close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
}

.question {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.question p {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.question-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.question-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.question-options input[type="radio"] {
    width: auto;
    margin-bottom: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .hero { 
        min-height: 100vh; 
        padding: 20px 0 30px 0;
    }
    .hero-image-container {
        min-height: 100vh;
    }
    #hero-img {
        min-height: 100vh;
        object-fit: cover;
        object-position: center;
    }
    .hero-text { 
        padding: 0 1rem 20px 1rem; 
    }
    .hero-text h1 { 
        font-size: 1.8rem; 
        margin-top: 15px;
        margin-bottom: 1rem;
    }
    .hero-columns { 
        grid-template-columns: 1fr; 
        gap: 1.5rem; 
    }
    .hero-bullets {
        font-size: 1.1rem;
    }
    .hero-bullets li {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    .hero-bullets li::before {
        font-size: 1.5rem;
    }
    .hero-bullets ul.sub-bullets li {
        font-size: 0.9rem;
    }
    .hero-urgency {
        font-size: 1.2rem;
        margin-top: 0.8rem;
    }
    .hero-urgency-small {
        font-size: 0.8rem;
    }
    .cta-wrapper {
        margin-top: 0.5rem;
    }
    .qualify-btn {
        padding: 0.9rem 2rem !important;
        font-size: 1.2rem !important;
    }
    .cta-notes {
        flex-direction: column;
        gap: 0.3rem;
    }
    .cta-disclaimer, .cta-requirements {
        font-size: 0.75rem;
    }
    .top-menu ul { display: none; }
    .big-cta-btn { font-size: 1.8rem !important; padding: 1.5rem 3rem !important; }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-col {
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* States section responsive */
@media (max-width: 768px) {
    #states-section > div {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    #states-section > div {
        grid-template-columns: 1fr !important;
    }
}

/* State link hover effect */
#states-section a:hover h2 {
    background: #2989d8 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(41, 137, 216, 0.3);
}
