/* Base styles imported via HTML link tag */

/* Solutions Page Specific Styles */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    min-height: 60vh;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="solutions-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23510a94" stroke-width="0.5" opacity="0.2"/></pattern></defs><rect width="200" height="200" fill="url(%23solutions-grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #510a94 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #b0b0b0;
    margin-bottom: 0;
}

/* Main Content */
.main-content {
    background: #0f0f0f;
}

/* Solutions Overview */
.solutions-overview {
    background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
    border-bottom: 1px solid #333;
    padding: 6rem 0;
}

.solutions-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.overview-content {
    text-align: center;
    margin-bottom: 4rem;
}

.overview-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
    max-width: 900px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.approach-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #333;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(81, 10, 148, 0.3);
}

.approach-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #510a94;
}

.approach-icon svg {
    width: 100%;
    height: 100%;
}

.approach-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

/* Solution Sections */
.solution-section {
    padding: 6rem 0;
    border-bottom: 1px solid #333;
}

.solution-section:nth-child(even) {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
}

.solution-section:nth-child(odd) {
    background: #0f0f0f;
}

.solution-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.solution-icon-large {
    width: 80px;
    height: 80px;
    color: #510a94;
    flex-shrink: 0;
}

.solution-icon-large svg {
    width: 100%;
    height: 100%;
}

.solution-text h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-align: left;
}

.solution-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-description h3 {
    font-size: 1.5rem;
    color: #510a94;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.solution-description h3:first-child {
    margin-top: 0;
}

.solution-description p {
    color: #e0e0e0;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.solution-features {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid #444;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 8px;
    border: 1px solid #555;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: #510a94;
}

.feature-item h4 {
    font-size: 1.2rem;
    color: #510a94;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #b0b0b0;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.solution-cta {
    margin-top: 2rem;
    text-align: center;
}

.solution-detail-link {
    display: inline-block;
    background: #510a94;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.solution-detail-link:hover {
    background: #6b1bb8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(81, 10, 148, 0.3);
}

/* Solutions CTA */
.solutions-cta {
    background: linear-gradient(135deg, #510a94 0%, #7a1db8 100%);
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: #e0e0e0;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button.primary {
    background: #ffffff;
    color: #510a94;
}

.cta-button.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background: #ffffff;
    color: #510a94;
    transform: translateY(-2px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .solution-header {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .solution-text h2 {
        text-align: center;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 50vh;
    }

    .hero-container {
        min-height: 50vh;
        padding: 2rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .solutions-overview,
    .solution-section {
        padding: 4rem 0;
    }

    .solutions-overview h2,
    .solution-text h2 {
        font-size: 2rem;
    }

    .overview-content p {
        font-size: 1.1rem;
    }

    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-card {
        padding: 2rem;
    }

    .solution-header {
        gap: 1.5rem;
    }

    .solution-icon-large {
        width: 60px;
        height: 60px;
    }

    .solution-features {
        padding: 2rem;
    }

    .feature-item {
        padding: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .approach-card {
        padding: 1.5rem;
    }

    .solution-features {
        padding: 1.5rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .solutions-overview,
    .solution-section {
        padding: 3rem 0;
    }
}