.hero {
    /* Changed 'center/cover' to exactly '100% 100%' */
    background: linear-gradient(rgba(26, 37, 44, 0.8), rgba(26, 37, 44, 0.8)), url('../images/hero-bg.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 60px 20px;
}
.hero .badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
    margin-bottom: 20px;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: #d1d5db;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.trusted-partner {
    background: #fafafa;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-card h4 {
    font-size: 1.2rem;
    color: #1a252c;
    margin-bottom: 5px;
}

.product-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.product-item {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 30px;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.product-text {
    flex: 1;
}

.product-text h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.product-text p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.product-text ul {
    padding-left: 20px;
    list-style-type: disc;
    color: #4b5563;
    font-size: 0.9rem;
}

.product-image img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.center-btn {
    text-align: center;
    margin-top: 40px;
}

.get-in-touch {
    background: #fafafa;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero {
        min-height: 450px;
        padding: 50px 20px;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .grid-4,
    .contact-grid,
    .grid-features {
        grid-template-columns: 1fr;
    }

    .product-item {
        flex-direction: column;
    }

    .product-image img {
        width: 100%;
        height: auto;
    }
}