/* ================================
   SOLUTIONS PAGE SPECIFIC STYLES
   ================================ */

/* CSS Variables */
:root {
    --xw-blue: #003366;
    --xw-accent: #FF6B00;
    --xw-dark: #001a33;
    --xw-light: #f8f9fa;
}

/* Hero Section */
.solutions-hero {
    background: linear-gradient(135deg, #003366 0%, #004080 30%, #FF6B00 100%);
    color: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FF6B00;
    text-shadow: 0 2px 4px rgba(218, 199, 199, 0.3), 
                 0 0 20px rgba(29, 28, 28, 0.3);
    display: block;
    line-height: 1;
}


.stat-label {
    color:#e0e6ed;
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    max-width: 300px;
}

.market-positioning h3 {
    color: #FF6B00;
    margin-bottom: 1rem;
}

/* Executive Summary */
.executive-summary {
    max-width: 1200px;
    margin: 0 auto;
}

.summary-header {
    text-align: center;
    margin-bottom: 4rem;
}

.summary-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
}

.value-proposition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.value-prop {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-top: 4px solid var(--xw-accent);
    transition: transform 0.3s ease;
}

.value-prop:hover {
    transform: translateY(-8px);
}

.prop-icon {
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.prop-icon i {
    font-size: 2rem;
    color: var(--xw-accent);
}

.value-prop h3 {
    color: var(--xw-blue);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.prop-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.prop-metrics {
    border-top: 1px solid #eee;
    padding-top: 1.5rem;
}

.metric {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--xw-accent);
    display: block;
}

.metric-desc {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.25rem;
}

/* Market Reality Section */
/* Market Reality Section - Soft & Professional */
.market-reality {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--xw-dark) 0%, #002244 100%);
    color: white;
}

.reality-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
}

.reality-subtitle {
    text-align: center;
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 4rem;
    font-style: italic;
    color: #e0e6ed;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.challenge-item {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.challenge-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 107, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.challenge-stat {
    font-size: 3.5rem;
    font-weight: 800;
    color: #FF6B00;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.challenge-label {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.challenge-desc {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.5;
    color: #d1d9e0;
    max-width: 280px;
    margin: 0 auto;
}

.solution-preview {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem 2rem;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.solution-preview h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #FFD700;
}

.solution-preview p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: #ffffff;
    line-height: 1.4;
}

.solution-preview strong {
    color: #FF6B00;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .market-reality {
        padding: 4rem 0;
    }
    
    .reality-content h2 {
        font-size: 2.2rem;
    }
    
    .reality-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }
    
    .challenge-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .challenge-item {
        padding: 2.5rem 1.5rem;
    }
    
    .challenge-stat {
        font-size: 3rem;
    }
    
    .challenge-label {
        font-size: 1.2rem;
    }
    
    .challenge-desc {
        font-size: 0.95rem;
        max-width: none;
    }
    
    .solution-preview {
        margin-top: 3rem;
        padding: 2.5rem 1.5rem;
    }
    
    .solution-preview h3 {
        font-size: 1.7rem;
    }
    
    .solution-preview p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .reality-content h2 {
        font-size: 1.9rem;
    }
    
    .challenge-stat {
        font-size: 2.5rem;
    }
    
    .challenge-item {
        padding: 2rem 1rem;
    }
    
    .solution-preview {
        padding: 2rem 1rem;
    }
    
    .solution-preview h3 {
        font-size: 1.5rem;
    }
}
/* Tab System */
.tab-navigation {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--xw-accent);
    border-bottom-color: var(--xw-accent);
}

.tab-content {
    min-height: 400px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* Framework Grid */
.framework-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.framework-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--xw-accent);
}

.framework-item h4 {
    color: var(--xw-blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.framework-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.framework-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 1.5rem;
}

.framework-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--xw-accent);
    font-weight: bold;
}

/* Operations Flow */
.operations-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.flow-step {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 280px;
    position: relative;
}

.step-number {
    background: var(--xw-accent);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.flow-step h4 {
    color: var(--xw-blue);
    margin-bottom: 1rem;
}

.flow-arrow {
    font-size: 2rem;
    color: var(--xw-accent);
    font-weight: bold;
}

/* Tech Specs */
.tech-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.spec-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.spec-category h4 {
    color: var(--xw-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.spec-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-category li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 2rem;
}

.spec-category li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

/* Industry Applications */
.industry-applications {
    background: #f8f9fa;
    padding: 5rem 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.industry-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--xw-accent);
}

.industry-card:hover {
    transform: translateY(-8px);
}

.industry-icon {
    background: #f8f9fa;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.industry-icon i {
    font-size: 2rem;
    color: var(--xw-accent);
}

.industry-card h3 {
    color: var(--xw-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.use-cases h4 {
    color: var(--xw-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.use-cases ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.use-cases li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
    line-height: 1.5;
}

.use-cases li strong {
    color: var(--xw-blue);
}

.impact-metrics {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--xw-accent);
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

/* ROI Calculator */
.roi-section {
    padding: 5rem 0;
    background: white;
}

.calculator-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.calculator-inputs h3,
.calculator-results h3 {
    color: var(--xw-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.input-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-weight: 600;
    color: var(--xw-blue);
    margin-bottom: 0.5rem;
}

.input-group input {
    padding: 0.75rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--xw-accent);
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.result-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid var(--xw-accent);
}

.result-icon {
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.result-icon i {
    color: var(--xw-accent);
    font-size: 1.5rem;
}

.result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--xw-blue);
    display: block;
    margin-bottom: 0.5rem;
}

.result-label {
    color: #666;
    font-size: 0.9rem;
}

.methodology-note {
    grid-column: 1 / -1;
    margin-top: 2rem;
    padding: 1rem;
    background: #e8f4fd;
    border-radius: 8px;
    text-align: center;
}

.methodology-note p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

/* Competitive Positioning */
.competitive-positioning {
    padding: 5rem 0;
    background: var(--xw-dark);
    color: white;
}

.positioning-chart {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.chart-container {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.positioning-insights h3 {
    color: #FF6B00;
    margin-bottom: 2rem;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    line-height: 1.6;
}

.advantage-list li strong {
    color: #FF6B00;
}

/* Implementation Roadmap */
.implementation-roadmap {
    padding: 5rem 0;
    background: white;
}

.roadmap-timeline {
    position: relative;
    margin: 3rem 0;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--xw-accent), var(--xw-blue));
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-left: 6rem;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 4rem;
    height: 4rem;
    background: var(--xw-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.3);
}

.phase-number {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    border-left: 4px solid var(--xw-accent);
}

.timeline-content h3 {
    color: var(--xw-blue);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.phase-objectives,
.phase-deliverables {
    margin-bottom: 2rem;
}

.phase-objectives h4,
.phase-deliverables h4 {
    color: var(--xw-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.phase-objectives ul,
.phase-deliverables ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-objectives li,
.phase-deliverables li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.phase-objectives li::before {
    content: "🎯";
    position: absolute;
    left: 0;
}

.phase-deliverables li::before {
    content: "📋";
    position: absolute;
    left: 0;
}

/* Executive CTA */
.executive-cta {
    background: linear-gradient(135deg, var(--xw-blue) 0%, var(--xw-accent) 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

.cta-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-option {
    background: rgba(255,255,255,0.1);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.cta-option:hover {
    transform: translateY(-8px);
}

.cta-option h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cta-option p {
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.9;
}

.trust-item i {
    color: #FF6B00;
}

/* Utility Classes */
.section-padding {
    padding: 5rem 0;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
}

.bg-gradient {
    background: linear-gradient(135deg, var(--xw-blue) 0%, var(--xw-accent) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-visual {
        position: static;
        transform: none;
        margin-top: 3rem;
        max-width: 100%;
    }
    
    .solutions-hero {
        min-height: 60vh;
        text-align: center;
    }
    
    .value-proposition-grid,
    .challenge-grid,
    .framework-grid,
    .industry-grid,
    .tech-specs {
        grid-template-columns: 1fr;
    }
    
    .calculator-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .input-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .positioning-chart {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .operations-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .cta-options {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .timeline-item {
        padding-left: 5rem;
    }
    
    .roadmap-timeline::before {
        left: 1.5rem;
    }
    
    .timeline-marker {
        left: -0.5rem;
        width: 3rem;
        height: 3rem;
    }
    
    .phase-number {
        font-size: 1.2rem;
    }
    
    .tab-navigation {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .tab-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .value-prop,
    .industry-card,
    .timeline-content {
        padding: 2rem;
    }
    
    .calculator-container {
        padding: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-option {
        padding: 2rem;
    }
    
    .challenge-stat {
        font-size: 2.5rem;
    }
    
    .reality-content h2 {
        font-size: 2rem;
    }
    
    .hero-visual {
        padding: 1.5rem;
    }
}