body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #2f3a24;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.top-nav nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.top-nav nav .small.muted {
    margin-right: 16px;
}

.top-nav nav a {
    text-decoration: none;
    color: #2f3a24;
}

.top-nav nav .btn-primary {
    color: white;
}

.top-nav nav button {
    font-family: Arial, sans-serif;
    font-size: 14px;
    background: #f2f4f2;
    color: #2f3a24;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
}

.top-nav nav button:hover {
    background: #e2e4e2;
}

.logo {
    height: 50px;
}

.hero {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: url('../img/bg-top.png') no-repeat center center;
    background-size: cover;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    width: 50%;
    max-width: 600px;
}

.hero-left h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-image {
    width: 50%;
    text-align: center;
}

.hero-image img {
    width: 420px;
    max-width: 100%;
}

.actions {
    margin-top: 20px;
}

.btn-primary {
    background: linear-gradient(#86bf3e, #5a872c);
    padding: 12px 24px;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.btn-primary:hover {
    background: linear-gradient(#76af2e, #4a771c);
}

.btn-primary.small {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-secondary {
    background: #f2f4f2;
    padding: 12px 24px;
    border-radius: 6px;
    margin-left: 12px;
    display: inline-block;
    text-decoration: none;
    color: #2f3a24;
}

.btn-secondary:hover {
    background: #e2e4e2;
}

.btn-link {
    color: #86bf3e;
    text-decoration: none;
    font-weight: bold;
}

.btn-link:hover {
    text-decoration: underline;
}

.trusted {
    text-align: center;
    padding: 60px 40px;
    background: #f9f9f9;
}

.trusted > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.trusted p {
    font-size: 18px;
    margin-bottom: 30px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.logos span {
    padding: 20px 40px;
    background: #e0e0e0;
    border-radius: 8px;
    font-weight: bold;
    color: #888;
}

.features {
    padding: 20px 60px 80px;
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
}

.features h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.feature-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    max-width: 280px;
}

.feature img {
    height: 103px;
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature p {
    color: #666;
    margin-bottom: 16px;
}

.testimonial {
    text-align: center;
    padding: 80px 60px;
    background: #f9f9f9;
}

.testimonial > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial blockquote {
    font-size: 24px;
    font-style: italic;
    margin: 0 0 20px 0;
    color: #2f3a24;
}

.testimonial .customer {
    color: #666;
    font-size: 16px;
}

.pricing {
    padding: 80px 60px;
    text-align: center;
    background: url('../img/bg-bottom.png') no-repeat center bottom;
    background-size: cover;
}

.pricing > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.plan {
    background: white;
    padding: 32px;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.plan p {
    color: #666;
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 8px;
    font-weight: bold;
}

.badge.green {
    background: #6ca144;
    color: white;
}

.badge.orange {
    background: #d68d21;
    color: white;
}

.cta {
    text-align: center;
    padding: 80px 60px;
    background: #7aa94c;
    color: white;
}

.cta > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.cta-btn {
    font-size: 18px;
    padding: 16px 32px;
    margin-bottom: 16px;
}

.cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
}

footer {
    text-align: center;
    padding: 40px;
    background: #2f3a24;
    color: white;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

footer ul li a {
    color: white;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }
    
    .hero-left {
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        width: 100%;
        margin-top: 40px;
    }
    
    .hero-left h1 {
        font-size: 32px;
    }
    
    .feature-grid,
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .top-nav {
        padding: 20px;
    }
    
    .features,
    .pricing,
    .cta {
        padding: 40px 20px;
    }
}
