/* ============================================
   COMPONENT STYLES
   ============================================ */

/* Value Pillars */
.value-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.pillar {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.08);
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.15);
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.pillar h3 {
    font-size: 1.5rem;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

.pillar p {
    color: var(--grey-700);
    line-height: 1.7;
}

/* Solution Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.solution-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.08);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(10, 22, 40, 0.15);
}

.solution-card-header {
    background: linear-gradient(135deg, var(--navy-primary), var(--steel-blue));
    color: var(--white);
    padding: 2rem;
}

.solution-card-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.solution-card-body {
    padding: 2rem;
}

.solution-card-body ul {
    list-style: none;
    margin-top: 1.5rem;
}

.solution-card-body ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--grey-200);
    color: var(--grey-700);
}

.solution-card-body ul li:last-child {
    border-bottom: none;
}

.solution-card-body ul li::before {
    content: "✓";
    color: var(--teal-primary);
    font-weight: bold;
    margin-right: 0.75rem;
}

/* Content Blocks */
.content-block {
    margin: 3rem 0;
}

.content-block h3 {
    font-size: 1.75rem;
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
}

.content-block p {
    color: var(--grey-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-block ul {
    list-style: none;
    margin-top: 1.5rem;
}

.content-block ul li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--grey-700);
    line-height: 1.7;
}

.content-block ul li::before {
    content: "•";
    color: var(--teal-primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: 0.5rem;
}

/* Benefits List */
.benefits-list {
    margin-top: 3rem;
}

.benefits-list h3 {
    font-size: 2rem;
    color: var(--navy-primary);
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--grey-700);
    line-height: 1.6;
}

/* Industries Grid */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.industry-tile {
    background: var(--white);
    padding: 2rem;
    text-align: center;
    border-radius: 8px;
    font-weight: 600;
    color: var(--navy-primary);
    box-shadow: 0 2px 8px rgba(10, 22, 40, 0.05);
    transition: all 0.3s ease;
}

.industry-tile:hover {
    background: var(--teal-primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(20, 184, 166, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-primary) 100%);
    color: var(--white);
    padding: 6rem 2rem;
    text-align: center;
}

.cta-section h2 {
    font-family: var(--font-serif);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

/* Feature Highlights */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-box {
    background: var(--grey-50);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--teal-primary);
}

.feature-box h4 {
    color: var(--navy-primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-box p {
    color: var(--grey-700);
    line-height: 1.7;
}

/* Responsive Components */
@media (max-width: 768px) {
    .value-pillars,
    .solutions-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
