/* ================================
   Solutions Pages Styles (Giga-inspired)
   ================================ */

/* Solutions Hero */
.solutions-hero {
    padding: 8rem 2rem 6rem;
    text-align: center;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

/* Subtle grid background for hero */
.solutions-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.5;
    z-index: 0;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

.solutions-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.solutions-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(187, 153, 84, 0.1);
    color: #bb9954;
    border: 1px solid rgba(187, 153, 84, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.solutions-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.solutions-title span {
    color: #bb9954;
    font-style: italic;
}

.solutions-lead {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* Insights Grid (The Core Layout) */
.insights-section {
    padding: 4rem 2rem 8rem;
    max-width: 1400px;
    /* Wide container like Giga */
    margin: 0 auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    /* Tighter gap for card feel */
}

/* Card Style */
.insight-card {
    background: #0f0f0f;
    /* Slightly lighter than pure black */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Subtle border */
    border-radius: var(--radius-md);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.insight-card:hover {
    border-color: rgba(187, 153, 84, 0.4);
    transform: translateY(-2px);
    background: #141414;
}

/* Featured/Wide Cards */
.insight-card.wide {
    grid-column: span 2;
}

.insight-card.tall {
    grid-row: span 2;
}

/* Card Content */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    color: #bb9954;
    opacity: 0.8;
}

.card-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.insight-card h3 {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.insight-card p {
    color: var(--color-text-tertiary);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Card Visuals (Abstract lines/shapes at bottom) */
.card-visual {
    margin-top: 2rem;
    height: 100px;
    width: 100%;
    position: relative;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.insight-card:hover .card-visual {
    opacity: 1;
}

/* Call to Action Section (Bottom) */
.solutions-cta {
    text-align: center;
    padding: 8rem 2rem;
    background: radial-gradient(circle at center, rgba(187, 153, 84, 0.1) 0%, transparent 60%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.solutions-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insight-card.wide {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }

    .insight-card.wide {
        grid-column: span 1;
    }

    .solutions-title {
        font-size: 2.5rem;
    }
}