/* White Label - Solutions Page Specific Styles */

/* =============================================
   Complete Technology Stack Section
   ============================================= */

.product-card {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--green-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--green-primary);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(6px);
    z-index: -1;
}

.product-card h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.product-card p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    font-size: 0.875rem;
}

.product-features li::before {
    content: '•';
    color: var(--green-primary);
    font-weight: bold;
    width: 1rem;
    text-align: center;
}

.product-link {
    color: var(--green-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: var(--green-light);
    transform: translateX(3px);
}

.product-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.product-link:hover::after {
    transform: translateX(3px);
}

/* =============================================
   Theming & User Experience Section
   ============================================= */

.theming-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.theming-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.theming-item:hover {
    border-color: var(--green-primary);
    transform: translateY(-2px);
}

.theming-item i {
    color: var(--green-primary);
    font-size: 1.5rem;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.theming-item h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.theming-item p {
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

.design-showcase {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1.5rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.design-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 230, 118, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.design-showcase h3 {
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.design-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.design-item {
    background: var(--black);
    border: 1px solid var(--gray-700);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.design-item:hover {
    border-color: var(--green-primary);
    transform: scale(1.02);
}

.design-item i {
    color: var(--green-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    display: block;
}

.design-item span {
    color: var(--gray-300);
    font-size: 0.875rem;
    font-weight: 500;
}

/* =============================================
   Operations & Support Section
   ============================================= */

.support-card {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.support-card h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.support-card > p {
    color: var(--gray-400);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.125rem;
}

.support-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-phase {
    background: var(--black);
    border: 1px solid var(--gray-700);
    border-radius: 1rem;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.support-phase:hover {
    border-color: var(--green-primary);
    transform: translateX(5px);
}

.support-phase::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 30px;
    background: var(--green-primary);
    border-radius: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-phase:hover::before {
    opacity: 1;
}

.support-phase h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.support-phase p {
    color: var(--gray-400);
    margin: 0;
    line-height: 1.6;
}

.operations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.operation-item {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.operation-item:hover {
    border-color: var(--green-primary);
    transform: translateY(-3px);
}

.operation-item i {
    color: var(--green-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.operation-item h4 {
    color: var(--white);
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.operation-item p {
    color: var(--gray-400);
    margin: 0;
    line-height: 1.6;
    font-size: 0.875rem;
}

/* =============================================
   Technical Infrastructure Section
   ============================================= */

.tech-card {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--green-primary);
    box-shadow: 0 10px 30px rgba(0, 230, 118, 0.1);
}

.tech-icon {
    width: 3rem;
    height: 3rem;
    background: var(--green-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

.tech-card h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    font-size: 0.875rem;
}

.tech-features li::before {
    content: '✓';
    color: var(--green-primary);
    font-weight: bold;
    width: 1rem;
    text-align: center;
}

/* =============================================
   Compliance & Governance Section
   ============================================= */

.compliance-card {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1.5rem;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-3px);
}

.compliance-card h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.compliance-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--black);
    border: 1px solid var(--gray-700);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.compliance-item:hover {
    border-color: var(--green-primary);
    transform: translateX(5px);
}

.compliance-item i {
    color: var(--green-primary);
    font-size: 1.25rem;
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

.compliance-item span {
    color: var(--gray-300);
    font-weight: 500;
}

/* =============================================
   KPIs & Timeline Section
   ============================================= */

.kpi-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-metric {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.timeline-metric:hover {
    border-color: var(--green-primary);
    transform: scale(1.02);
}

.metric-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-primary);
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.implementation-timeline {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1.5rem;
    padding: 2.5rem;
}

.implementation-timeline h3 {
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 1.5rem;
}

.timeline-step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 1rem;
    top: 2.5rem;
    bottom: -1.5rem;
    width: 2px;
    background: var(--gray-700);
}

.step-marker {
    width: 2rem;
    height: 2rem;
    background: var(--green-primary);
    color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.step-content p {
    color: var(--gray-400);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   FAQ Section Enhancement
   ============================================= */

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    background: var(--black-light);
    border: 1px solid var(--gray-800);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--green-primary);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--gray-400);
    margin: 0;
    line-height: 1.6;
}

/* =============================================
   Responsive Design
   ============================================= */

@media (max-width: 1024px) {
    .design-grid {
        grid-template-columns: 1fr;
    }
    
    .operations-grid {
        grid-template-columns: 1fr;
    }
    
    .kpi-timeline {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-card,
    .tech-card,
    .compliance-card,
    .support-card,
    .implementation-timeline {
        padding: 1.5rem;
    }
    
    .theming-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .theming-item i {
        margin-top: 0;
    }
    
    .support-timeline {
        gap: 1rem;
    }
    
    .timeline-step {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .timeline-step::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .product-icon,
    .tech-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.125rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
}
