/* Solutions Page Styles */

.solutions-hero {
    padding-top: 8rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(16, 185, 129, 0.05));
    text-align: center;
}

.hero-content-center {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(16, 185, 129, 0.1));
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* Solutions Grid */
.solutions-section {
    padding: 5rem 0;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.solution-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.solution-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.15);
    transform: scale(1.05);
}

.solution-card:hover:not(.featured) {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.solution-icon {
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-wrapper.blue {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 102, 255, 0.05));
    color: var(--primary);
}

.icon-wrapper.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    color: var(--secondary);
}

.icon-wrapper.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
    color: #8B5CF6;
}

.solution-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    text-align: center;
}

.solution-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.solution-features li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    border-bottom: 1px solid var(--gray-100);
}

.solution-features li:last-child {
    border-bottom: none;
}

.solution-card button {
    width: 100%;
    justify-content: center;
}

/* Industry Solutions */
.industry-solutions {
    background: var(--gray-50);
    padding: 5rem 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.industry-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.industry-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.industry-desc {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Showcase */
.features-showcase {
    padding: 5rem 0;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.feature-row.reverse {
    grid-template-columns: 2fr 1fr;
}

.feature-row.reverse .feature-visual {
    order: 2;
}

.feature-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(16, 185, 129, 0.1));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    border: 2px solid rgba(0, 102, 255, 0.2);
}

.feature-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.feature-bullets {
    list-style: none;
}

.feature-bullets li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    position: relative;
    padding-left: 1.5rem;
}

.feature-bullets li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ROI Section */
.roi-section {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    padding: 5rem 0;
}

.roi-container {
    max-width: 800px;
    margin: 0 auto;
}

.roi-content {
    text-align: center;
}

.roi-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.roi-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    margin-bottom: 3rem;
}

.roi-form {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    color: white;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.15);
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.result-card {
    text-align: center;
}

.result-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.result-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-light);
}

/* Responsive */
@media (max-width: 968px) {
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card.featured {
        transform: scale(1);
    }
    
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-row.reverse .feature-visual {
        order: 0;
    }
    
    .roi-results {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .industries-grid {
        grid-template-columns: 1fr;
    }
    
    .visual-placeholder {
        width: 150px;
        height: 150px;
        font-size: 3.5rem;
    }
}
