/* Font Imports */
@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-Thin.woff2') format('woff2'),
         url('fonts/BentonSans-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-ExtraLight.woff2') format('woff2'),
         url('fonts/BentonSans-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-Light.woff2') format('woff2'),
         url('fonts/BentonSans-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-Regular.woff2') format('woff2'),
         url('fonts/BentonSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-Book.woff2') format('woff2'),
         url('fonts/BentonSans-Book.woff') format('woff');
    font-weight: 450;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-Medium.woff2') format('woff2'),
         url('fonts/BentonSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-Bold.woff2') format('woff2'),
         url('fonts/BentonSans-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BentonSans';
    src: url('fonts/BentonSans-Black.woff2') format('woff2'),
         url('fonts/BentonSans-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Light.woff2') format('woff2'),
         url('fonts/Gilroy-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Regular.woff2') format('woff2'),
         url('fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Medium.woff2') format('woff2'),
         url('fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Bold.woff2') format('woff2'),
         url('fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gilroy';
    src: url('fonts/Gilroy-Heavy.woff2') format('woff2'),
         url('fonts/Gilroy-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'BentonSans', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

.plans-container {
    max-width: 1024px;
}

/* Header Styles */
.header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    height: 91px;
}

.logo-svg {
    height: 33px;
    width: 196px;
    object-fit: contain;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.call-text {
    font-size: 18px;
    color: #31425e;
    font-weight: 400;
    letter-spacing: -0.4px;
}

.cta-button {
    background: #df6136;
    color: white;
    border: none;
    padding: 15px 60px;
    font-family: 'BentonSans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background: #c5552f;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2472ba 0%, #1a5a9e 100%);
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 48px;
    margin-bottom: 60px;
}

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 64px;
    margin-bottom: 20px;
    font-family: 'BentonSans', sans-serif;
    max-width: 550px;
}

.hero-description {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
    letter-spacing: -0.4px;
    opacity: 0.95;
}

.hero-form {
    display: flex;
    gap: 7px;
    margin-bottom: 20px;
}

.zip-input {
    flex: 1;
    max-width: 340px;
    padding: 15px;
    border: none;
    font-size: 14px;
    background: white;
    color: #666;
}

.zip-input::placeholder {
    color: #999;
}

.get-offers-btn {
    background: #df6136;
    color: white;
    border: none;
    padding: 15px 60px;
    font-family: 'BentonSans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.get-offers-btn:hover {
    background: #c5552f;
}

.rating-text {
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.4px;
    font-weight: 300;
}

.rating-highlight {
    color: #7bb958;
    font-weight: 300;
}

.rating-link {
    color: #7bb958;
    text-decoration: underline;
}

.hero-right {
    position: relative;
    margin: auto;
}

.house-gas-shield-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.house-gas-shield-icon {
    width: 398px;
    height: 395px;
    object-fit: contain;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 40px;
}

.hero-left .features {
    display: none;
}

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

.feature-icon {
    width: 41px;
    height: 41px;
    background: transparent;
    border: 2px solid #7bb958;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.feature-icon svg {
    transform: rotate(-45deg);
    width: 25px;
    height: 25px;
}

.feature-text {
    font-size: 16px;
    color: white;
    font-weight: 400;
    letter-spacing: -0.4px;
}

/* Swoosh Divider */
.swoosh-divider {
    position: absolute;
    top: calc(-3vw - 1px);
    left: 0;
    width: 100%;
    z-index: 10;
    line-height: 0;
    margin: 0;
    padding: 0;
}

.swoosh-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* States Section */
.featured-plans-section {
    background: white;
    padding: 90px 0 50px;
    position: relative;
}

.featured-plans-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 56px;
    text-align: center;
    color: #486faf;
    margin-bottom: 30px;
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
}

/* Business CTA Section */
.business-cta {
    background: linear-gradient(135deg, #2472ba 0%, #1a5a9e 100%);
    padding: 44px 0;
    text-align: center;
}

.business-title {
    font-size: 46px;
    font-weight: 500;
    line-height: 56px;
    color: white;
    margin-bottom: 25px;
    max-width: 1028px;
    margin-left: auto;
    margin-right: auto;
}

.business-btn {
    background: #df6136;
    color: white;
    border: none;
    padding: 15px 60px;
    font-family: 'BentonSans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.business-btn:hover {
    background: #c5552f;
}

/* Footer */
.footer {
    background: #f7f7f7;
    padding: 16px 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.footer-left {
    display: flex;
    align-items: center;
}

.trusted-site-logo {
    width: 96px;
    height: 40px;
    object-fit: contain;
}

.footer-text {
    font-size: 11.25px;
    color: #4d6280;
    letter-spacing: -0.4px;
}

/* Legal Disclaimer */
.legal-disclaimer {
    background: #f7f7f7;
    padding: 25px 0;
}

.disclaimer-text {
    margin: 0 auto;
}

.disclaimer-text p {
    font-size: 12px;
    line-height: 28px;
    color: #000;
    letter-spacing: -0.4px;
    margin-bottom: 16px;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1520px) {
    .container {
        padding: 0 40px;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 20px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        height: auto;
        padding: 20px 0;
    }
    
    .header-right {
        display: none;
    }
    
    .call-text {
        font-size: 16px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-left {
        order: 2;
        text-align: left;
        max-width: none;
    }
    
    .hero-right {
        order: 1;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 40px;
        text-align: left;
    }
    
    .hero-description {
        text-align: left;
    }
    
    .hero-form {
        flex-direction: column;
        gap: 15px;
    }
    
    .zip-input,
    .get-offers-btn {
        width: 100%;
        max-width: none;
    }
    
    .rating-text {
        text-align: left;
    }
    
    .house-gas-shield-icon {
        width: 250px;
        height: 250px;
    }

    .featured-plans-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .desktop-features {
        display: none;
    }
    
    .hero-left .features {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
        margin: 20px 0;
    }
    
    .feature {
        justify-content: flex-start;
    }
    
    .business-title {
        font-size: 32px;
        line-height: 38px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        height: 40px;
        text-align: left;
    }
    
    .footer-text {
        font-size: 10px;
    }
    
    .trusted-site-logo {
        width: 80px;
        height: 32px;
    }
    
    .disclaimer-text p {
        font-size: 16px;
        line-height: 24px;
    }
    
    .swoosh-divider {
        top: calc(-2vw - 7px);
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 38px;
        line-height: 36px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }

    .feature-icon {
        width: 41px;
        height: 41px;
        margin-left: 10px;
    }
    
    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .house-gas-shield-icon {
        width: 200px;
        height: 200px;
    }
    
    .business-cta {
        padding: 40px 0;
    }

    .business-title {
        font-size: 26px;
        line-height: 32px;
    }
    
    .gift-card-svg {
        width: 240px;
        height: 240px;
    }
    
    .swoosh-divider {
        display: none;
    }

    .footer-content {
        flex-direction: column;
    }
}
