/* ============================================================================
   Solutions Page Styling
   ============================================================================ */

.solutions-page {
    background: #ffffff;
}

/* Hero Section */
.solutions-hero {
    background: #e8f5e9;
    padding: 100px 20px 80px;
    text-align: center;
    border-bottom: 1px solid #d5e8d4;
}

.solutions-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.solutions-hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.solutions-hero .hero-subtitle {
    font-size: 20px;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Solutions Grid Section */
.solutions-grid-section {
    padding: 100px 20px;
    background: #ffffff;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
}

.solutions-grid-section .solutions-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
}

/* Solution Cards */
.solution-card {
    background: #f8fffe;
    border: 1px solid #d5e8d4;
    border-radius: 12px;
    padding: 48px 36px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.solution-card:hover {
    border-color: #047727;
    box-shadow: 0 12px 32px rgba(4, 119, 39, 0.12);
    transform: translateY(-6px);
    background: #ffffff;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: #047727;
}

.solution-card:hover .solution-icon svg path {
    stroke: #ffffff;
}

.solution-icon svg {
    width: 44px;
    height: 44px;
}

.solution-card h2 {
    font-size: 14px;
    font-weight: 600;
    color: #047727;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.solution-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.solution-card > p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 24px;
}

.solution-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

.solution-benefits li {
    font-size: 15px;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.5;
    padding-left: 0;
}

.solution-benefits li::before {
    content: '';
    display: none;
}

.solution-cta {
    display: inline-block;
    color: #047727;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.solution-cta:hover {
    color: #035a1f;
    text-decoration: underline;
}

/* Trust Section */
.solutions-trust-section {
    background: #e8f5e9;
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid #d5e8d4;
    border-bottom: 1px solid #d5e8d4;
}

.solutions-trust-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 64px;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-stat {
    text-align: center;
    background: #ffffff;
    padding: 32px 24px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.trust-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #047727;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: #2d3748;
    font-weight: 600;
    line-height: 1.4;
}

/* How It Works Section */
.solutions-how-section {
    padding: 100px 20px;
    background: #ffffff;
    text-align: center;
}

.solutions-how-section h2 {
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 64px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto 48px;
}

.how-step {
    text-align: center;
    background: #f8fffe;
    padding: 48px 32px;
    border-radius: 12px;
    border: 1px solid #e8f5e9;
    transition: all 0.3s ease;
}

.how-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: #047727;
}

.step-number {
    width: 72px;
    height: 72px;
    background: #047727;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(4, 119, 39, 0.3);
}

.how-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
}

.how-step p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.how-cta {
    margin-top: 48px;
}

/* Final CTA Section */
.solutions-final-cta {
    background: linear-gradient(135deg, #e8f5e9 0%, #d5e8d4 100%);
    padding: 100px 20px;
    text-align: center;
    border-top: 1px solid #d5e8d4;
}

.solutions-final-cta h2 {
    font-size: 44px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.solutions-final-cta > .solutions-container > p {
    font-size: 21px;
    color: #2d3748;
    margin-bottom: 40px;
    font-weight: 500;
}

.final-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #047727;
    color: white !important;
    border-color: #047727;
}

.btn-primary:hover {
    background: #035a1f;
    border-color: #035a1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(4, 119, 39, 0.35);
    color: white !important;
}

.btn-secondary {
    background: white;
    color: #047727 !important;
    border-color: #047727;
}

.btn-secondary:hover {
    background: #047727;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(4, 119, 39, 0.35);
}

.btn-large {
    padding: 18px 44px;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-hero {
        padding: 70px 20px 60px;
    }

    .solutions-hero h1 {
        font-size: 36px;
    }

    .solutions-hero .hero-subtitle {
        font-size: 18px;
    }

    .solutions-grid-section {
        padding: 70px 20px;
    }

    .solutions-grid-section .solutions-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .solution-card {
        padding: 36px 28px;
    }

    .solution-card h3 {
        font-size: 22px;
    }

    .solution-icon {
        width: 72px;
        height: 72px;
    }

    .solution-icon svg {
        width: 38px;
        height: 38px;
    }

    .solutions-trust-section {
        padding: 70px 20px;
    }

    .solutions-trust-section h2 {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .trust-stat {
        padding: 28px 20px;
    }

    .stat-number {
        font-size: 42px;
    }

    .stat-label {
        font-size: 15px;
    }

    .solutions-how-section {
        padding: 70px 20px;
    }

    .solutions-how-section h2 {
        font-size: 32px;
        margin-bottom: 48px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .how-step {
        padding: 40px 28px;
    }

    .step-number {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .solutions-final-cta {
        padding: 70px 20px;
    }

    .solutions-final-cta h2 {
        font-size: 32px;
    }

    .solutions-final-cta > .solutions-container > p {
        font-size: 18px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .solutions-hero {
        padding: 60px 16px 50px;
    }

    .solutions-hero h1 {
        font-size: 30px;
    }

    .solutions-hero .hero-subtitle {
        font-size: 16px;
    }

    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .solutions-grid-section,
    .solutions-trust-section,
    .solutions-how-section,
    .solutions-final-cta {
        padding: 60px 16px;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-number {
        font-size: 38px;
    }

    .solutions-trust-section h2,
    .solutions-how-section h2,
    .solutions-final-cta h2 {
        font-size: 28px;
    }

    .solution-card {
        padding: 32px 24px;
    }
}

