/**
 * Solutions Page Consolidated CSS
 * Expert redesign with all fixes integrated
 * Clean, organized, no conflicts
 */

/* ============================================
   HERO SECTION - SIMPLE VERSION
   ============================================ */
.page-hero.solutions-hero-simple {
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-cyan) 100%);
    color: var(--brand-white);
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.solutions-hero-simple h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.solutions-hero-simple .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s;
    animation-fill-mode: both;
}

.solutions-hero-simple .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.solutions-hero-simple .hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    animation: fadeInUp 0.8s ease 0.4s;
    animation-fill-mode: both;
}

.solutions-hero-simple .hero-stat i {
    font-size: 1.5rem;
    color: var(--brand-cyan);
}

.solutions-hero-simple .hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s;
    animation-fill-mode: both;
}

@media (max-width: 768px) {
    .solutions-hero-simple {
        padding: 4rem 0 3rem;
    }
    
    .solutions-hero-simple .hero-stats {
        gap: 1.5rem;
    }
    
    .solutions-hero-simple .hero-stat {
        font-size: 1rem;
    }
}

/* Original Hero Styles (keeping for reference) */
.page-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-attachment: fixed;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(35, 26, 112, 0.9) 0%,
        rgba(35, 26, 112, 0.85) 50%, 
        rgba(41, 171, 226, 0.8) 100%);
    z-index: 1;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.page-hero .container {
    position: relative;
    z-index: 3;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: white;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
}

.hero-stat i {
    font-size: 1.5rem;
    color: var(--brand-cyan);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-width: 200px;
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */
.overview-section {
    background: white;
    padding: 5rem 0;
}

.overview-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-intro {
    text-align: center;
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--brand-navy), var(--brand-cyan));
    margin: 2rem auto 3rem;
    border-radius: 2px;
}

/* Solution Selector */
.solution-selector {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.selector-question h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: var(--brand-navy);
    text-align: center;
}

.selector-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.selector-option {
    background: white;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.selector-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.selector-option:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(35, 26, 112, 0.2);
}

.selector-option:hover::before {
    opacity: 0.1;
}

.selector-option.active {
    border-color: var(--brand-navy);
    background: var(--brand-navy);
    color: white;
}

.selector-option i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--brand-navy);
    transition: color 0.3s ease;
}

.selector-option.active i {
    color: white;
}

.selector-option span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================
   MODALITIES SECTION
   ============================================ */
.modalities-section {
    background: white;
    padding: 5rem 0;
}

.modalities-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

/* Solution Detail Cards */
.solution-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 4rem;
    background: #f8f9fa;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.solution-detail-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(41, 171, 226, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.solution-detail-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.solution-detail-card.reverse .solution-content {
    direction: ltr;
}

.solution-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.solution-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-detail-card:hover .solution-image img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-navy);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.image-badge.featured {
    background: var(--brand-cyan);
}

.solution-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.solution-header i {
    font-size: 2.5rem;
    color: var(--brand-navy);
}

.solution-header h2 {
    font-size: 2.5rem;
    color: var(--brand-navy);
    margin: 0;
    font-weight: 700;
}

.solution-tagline {
    font-size: 1.25rem;
    color: var(--brand-navy);
    font-weight: 700;
    margin-bottom: 2rem;
}

.solution-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--brand-navy);
    font-weight: 700;
}

.feature-column ul {
    list-style: none;
    padding: 0;
}

.feature-column li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #333333;
}

.feature-column li i {
    color: #16a34a;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.solution-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
}

.solution-stats .stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #333333;
    font-weight: 600;
}

/* ============================================
   COMPARISON SECTION
   ============================================ */
.comparison-section {
    background: #f8f9fa;
    padding: 5rem 0;
}

.comparison-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.comparison-table-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: var(--brand-navy);
    color: white;
}

.comparison-table thead th {
    padding: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
}

.comparison-table thead th.featured {
    background: var(--brand-cyan);
}

.comparison-table thead th .badge {
    position: absolute;
    top: -10px;
    right: 50%;
    transform: translateX(50%);
    background: #eab308;
    color: #333333;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table tbody td {
    padding: 1.5rem;
    text-align: center;
    color: #333333;
    font-weight: 500;
}

.comparison-table tbody td:first-child {
    font-weight: 700;
    text-align: left;
    color: var(--brand-navy);
    background: #f8f9fa;
}

.risk-low {
    color: #16a34a;
    font-weight: 600;
}

.risk-medium {
    color: #eab308;
    font-weight: 600;
}

.comparison-table i.fa-check-circle {
    color: #16a34a;
    margin-right: 0.5rem;
}

.comparison-cta {
    text-align: center;
    margin-top: 3rem;
}

.comparison-cta p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-timeline-section {
    padding: 5rem 0;
    background: white;
}

.process-timeline-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, 
        var(--brand-navy) 0%, 
        var(--brand-cyan) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--brand-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 20px rgba(35, 26, 112, 0.3);
    z-index: 10;
}

.timeline-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content p {
    color: #333333;
    margin-bottom: 1rem;
}

.timeline-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-cyan);
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 200px;
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   EXPERTISE SECTION
   ============================================ */
.expertise-showcase {
    background: #f8f9fa;
    padding: 5rem 0;
}

.expertise-showcase h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

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

.expertise-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-10px);
}

.expertise-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.expertise-content {
    padding: 2rem;
}

.expertise-content i {
    font-size: 2.5rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    display: block;
}

.expertise-content h3 {
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.expertise-content p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.expertise-content ul {
    list-style: none;
    padding: 0;
}

.expertise-content li {
    color: #333333;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.expertise-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
}

/* ============================================
   TRANSPARENCY SECTION
   ============================================ */
.transparency-section {
    background: white;
    padding: 5rem 0;
}

.transparency-bg {
    background: #f8f9fa;
    padding: 3rem 0;
    border-radius: 20px;
}

.transparency-header h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-weight: 800;
}

.transparency-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.transparency-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: white;
}

.transparency-card h3 {
    font-size: 1.75rem;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.transparency-list {
    list-style: none;
    padding: 0;
}

.transparency-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #333333;
    font-weight: 500;
}

.transparency-list i {
    color: #16a34a;
    margin-top: 0.25rem;
}

.card-highlight {
    background: rgba(35, 26, 112, 0.1);
    border: 1px solid rgba(35, 26, 112, 0.2);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Guarantees Section */
.guarantees-showcase {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #1a2a4f 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.guarantees-showcase h3 {
    color: white;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

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

.guarantee-box {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: transform 0.3s ease;
}

.guarantee-box:hover {
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.guarantee-icon i {
    font-size: 1.75rem;
    color: white;
}

.guarantee-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.guarantee-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.guarantee-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-cyan);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Trust Statement */
.trust-statement {
    margin-top: 3rem;
    text-align: center;
}

.trust-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-content i {
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 1.5rem;
}

.trust-content h3 {
    font-size: 2rem;
    color: var(--brand-navy);
    margin-bottom: 1rem;
}

.trust-content p {
    font-size: 1.125rem;
    color: #333333;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   METRICS SECTION
   ============================================ */
.metrics-section {
    background: linear-gradient(135deg, var(--brand-navy) 0%, #1a2a4f 100%);
    padding: 5rem 0;
}

.metrics-section h2 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.metric-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.metric-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.metric-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: white;
    padding: 5rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 3rem;
    color: var(--brand-navy);
    margin-bottom: 3rem;
    font-weight: 800;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.faq-tab {
    background: #f8f9fa;
    border: 2px solid transparent;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    color: #4a4a4a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    border-color: var(--brand-navy);
    color: var(--brand-navy);
}

.faq-tab.active {
    background: var(--brand-navy);
    color: white;
    border-color: var(--brand-navy);
}

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

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--brand-navy);
}

.faq-item h3 {
    color: var(--brand-navy);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-item p {
    color: #333333;
    line-height: 1.6;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 6rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.cta-content p {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.cta-note {
    color: white;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

/* ============================================
   CONTACT STRIP
   ============================================ */
.contact-strip {
    background: var(--brand-navy);
    padding: 1.5rem 0;
}

.contact-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-item i {
    font-size: 1.25rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 968px) {
    .solution-detail-card,
    .solution-detail-card.reverse {
        grid-template-columns: 1fr;
        padding: 3rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 0;
    }
    
    .transparency-content {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .solution-detail-card {
        padding: 2rem;
    }
    
    .solution-header h2 {
        font-size: 2rem;
    }
    
    .expertise-cards {
        grid-template-columns: 1fr;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-items {
        flex-direction: column;
        gap: 1rem;
    }
}