﻿.fixed-hero{
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
    margin-top: 0;
    padding: 80px 20px;
    text-align: center;
}

.fixed-hero h1{
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.fixed-hero .price-highlight{
    font-size: 3em;
    font-weight: bold;
    margin: 20px 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,.2);
}

.fixed-hero .tagline{
    font-size: 1.3em;
    margin-bottom: 20px;
    opacity: .95;
}

.fixed-hero .features-list{
    display: inline-block;
    font-size: 1.1em;
    margin-top: 20px;
    text-align: left;
}

.fixed-hero .features-list li{
    padding: 5px 0;
}

.fixed-hero .features-list li:before{
    content: '✓ ';
    margin-right: 8px;
}

.content-wrapper{
    margin: 0 auto;
    max-width: 1100px;
    padding: 0 20px;
}

.value-boxes{
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    margin: 40px 0;
}

.value-box{
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    border-top: 4px solid #27ae60;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    padding: 30px;
    text-align: center;
}

.value-box-icon{
    font-size: 3em;
    margin-bottom: 15px;
}

.value-box h3{
    color: #27ae60;
    font-size: 1.4em;
    margin-bottom: 15px;
}

.value-box p{
    color: #555;
    line-height: 1.6;
}

.pricing-card{
    background: white;
    border: 3px solid #27ae60;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,.1);
    margin: 40px auto;
    max-width: 800px;
    padding: 40px 10px;
}

.pricing-card .price-big{
    color: #27ae60;
    font-size: 4em;
    font-weight: bold;
    margin: 20px 0;
    text-align: center;
}

.pricing-card .price-includes{
    background: #f0f9f4;
    border-radius: 8px;
    margin: 20px 0;
    padding: 20px;
}

.pricing-card ul{
    margin: 15px 0;
}

.service-card{
    background: white;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    margin-bottom: 30px;
    padding: 30px;
}

.service-card h2{
    color: #2c3e50;
    font-size: 1.8em;
    margin-bottom: 0;
}

.service-card ul{
    margin: 20px 0;
}

.service-card li{
    color: #555;
    padding: 10px 0;
}

.info-box{
    background: #e8f5e9;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
    margin: 30px 0;
    padding: 20px;
}

.info-box h3{
    color: #1b5e20;
    margin-bottom: 10px;
}

.warning-box{
    background: #fff9e6;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
    margin: 30px 0;
    padding: 20px;
}

.warning-box h3{
    color: #856404;
    margin-bottom: 10px;
}

.cta-primary{
    background: #6a39b7;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px 40px;
    text-decoration: none;
    transition: background .2s;
}

.cta-primary:hover{
    background: #229954;
    color: #fff;
}

.cta-secondary{
    background: #27ae60;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1em;
    font-weight: bold;
    padding: 15px 40px;
    text-decoration: none;
    transition: background .2s;
}

.cta-secondary:hover{
    background: #229954;
    color: #fff;
}

.upgrade-banner{
    background: #f0f9f4;
    border: 2px solid #27ae60;
    border-radius: 10px;
    margin: 40px 0;
    padding: 30px;
    text-align: center;
}

.upgrade-banner h3{
    color: #27ae60;
    font-size: 1.8em;
    margin-bottom: 15px;
}

.upgrade-banner p{
    color: #555;
    font-size: 1.1em;
    margin-bottom: 20px;
}

@media (max-width: 968px){
    .value-boxes{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px){
    .fixed-hero h1{
        font-size: 2em;
    }

    .fixed-hero .price-highlight{
        font-size: 2.2em;
    }

    .fixed-hero .tagline{
        font-size: 1.1em;
    }

    .pricing-card .price-big{
        font-size: 2.5em;
    }
}

.free-preview{
    display: flex;
    justify-content: center;
}