/* ================================================
   ABOUT PAGE STYLES
   ================================================ */

.hero {
    text-align: center;
    padding: 4rem 1rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

.hero-content h1 {
    font-size: 3rem;
    color: var(--clr-primary);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--clr-text);
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.features {
    margin-bottom: 3rem;
}

.features h2 {
    font-size: 2rem;
    color: var(--clr-text);
    margin-bottom: 2rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--clr-primary);
    box-shadow: 0 12px 24px rgba(14, 165, 233, 0.1);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.data-pipeline {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    margin-bottom: 3rem;
}

.data-pipeline h2 {
    font-size: 2rem;
    color: var(--clr-text);
    margin-bottom: 2rem;
    text-align: center;
}

.pipeline-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--clr-primary), #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.step-content h3 {
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.stores {
    text-align: center;
    margin-bottom: 3rem;
}

.stores h2 {
    font-size: 2rem;
    color: var(--clr-text);
    margin-bottom: 2rem;
}

.stores-list {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.store-badge {
    background: linear-gradient(135deg, var(--clr-primary), #06b6d4);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 1rem;
}

.stores-note {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.disclaimer {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
}

.disclaimer h2 {
    font-size: 1.5rem;
    color: var(--clr-warning);
    margin-bottom: 1.5rem;
}

.disclaimer-content p {
    color: var(--clr-text);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.disclaimer-content p:last-child {
    margin-bottom: 0;
}

.team {
    margin-bottom: 3rem;
}

.team h2 {
    font-size: 2rem;
    color: var(--clr-text);
    margin-bottom: 2rem;
    text-align: center;
}

.team-info {
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
}

.team-logo {
    font-size: 3rem;
}

.team-card h3 {
    font-size: 1.5rem;
    color: var(--clr-primary);
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.team-details p {
    color: var(--clr-text);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.team-details strong {
    color: var(--clr-primary);
}

.cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: var(--radius-lg);
    margin-bottom: 3rem;
}

.cta h2 {
    font-size: 2rem;
    color: var(--clr-text);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ================================================
   RESPONSIVE ADJUSTMENTS
   ================================================ */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .features h2,
    .data-pipeline h2,
    .stores h2,
    .team h2,
    .cta h2 {
        font-size: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .data-pipeline {
        padding: 1.5rem;
    }
    
    .pipeline-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .team-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .stores-list {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .store-badge {
        display: inline-block;
    }
    
    .cta {
        padding: 2rem 1rem;
    }
}