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

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

.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;
    text-align: left;
    margin-top: 20px;
    font-size: 1.1em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.comparison-table {
    background: #fff;
    border: 1px solid #eee
    border-radius: 10px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: #27ae60;
    color: white;
    padding: 15px;
    text-align: left;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

@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;
    }
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th, .comparison-table td {
    padding: 12px 14px;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
}

@media (max-width: 768px) {

    .comparison-table thead {
        display: none;
    }

    .comparison-table table, .comparison-table tbody, .comparison-table tr, .comparison-table td {
        display: block;
        max-width: 100%;   line-height: 1.6;
    }

    .comparison-table tr {
        margin-bottom: 0;
        padding: 12px; border-bottom: 1px solid #e5e5e5;


    }

    .comparison-table td {
        padding: 8px 0;
        border: none;
    }

    .comparison-table td::before {
        content: attr(data-label);
        display: block;
        font-weight: 600;
        font-size: .85rem;
        color: #666;
        margin-bottom: 4px;
    }
}