/* ===== Solutions Page ===== */

/* Hero */
.solutions-hero {
    position: relative;
    width: 100%;
    height: 740px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}
.solutions-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
    color: #fff;
}
.solutions-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.solutions-hero-content h1 span {
    color: var(--color-primary);
}
.solutions-hero-content p {
    font-size: 1.2rem;
    opacity: 0.95;
}

/* Solutions card grid */
.solutions-section {
    padding: 60px 0;
}
.sol-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.sol-card {
    background: #fff;
    border: 1px solid #E8F0E4;
    border-radius: 28px;
    padding: 24px;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
}
.sol-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 25px -10px rgba(92, 167, 85, 0.15);
}
.sol-product-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 16px;
    background: #F0F4E8;
}
.sol-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sol-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 12px 0 8px;
    color: var(--color-text);
}
.sol-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
    flex: 1;
}
.sol-card-link {
    display: inline-block;
    margin-top: auto;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 2px;
    transition: opacity 0.2s;
    align-self: flex-start;
}
.sol-card-link:hover {
    opacity: 0.8;
}
.sol-card-link-disabled {
    color: #999;
    border-bottom-color: #999;
    cursor: default;
    pointer-events: none;
    opacity: 0.5;
}

/* Bottom CTA */
.solutions-cta {
    background: #F9FCF5;
    padding: 60px 0;
    text-align: center;
}
.solutions-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.solutions-cta p {
    color: var(--color-text-light);
    margin-bottom: 24px;
}
.solutions-cta .btn-primary {
    background: var(--color-primary);
    color: #fff;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.2s;
}
.solutions-cta .btn-primary:hover {
    background: var(--color-primary-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .solutions-hero {
        height: 500px;
    }
    .solutions-hero-content h1 {
        font-size: 2.5rem;
    }
    .sol-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .solutions-hero {
        height: 400px;
    }
    .solutions-hero-content h1 {
        font-size: 1.8rem;
    }
    .solutions-hero-content p {
        font-size: 1rem;
    }
    .sol-card-grid {
        grid-template-columns: 1fr;
    }
}
