/* POS Success Section Styles */

.pos-success-section {
    padding: 80px 0;
    background: white;
}

.pos-success-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pos-success-header {
    text-align: center;
    margin-bottom: 60px;
}

.pos-success-header h2 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.pos-success-header p {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.2rem;
    color: #64748b;
}

.pos-success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.success-story-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #4ECDC4;
}

.story-metrics {
    display: flex;
    gap: 30px;
    margin-bottom: 24px;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 4px;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
}

.story-content p {
    font-style: italic;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.story-author strong {
    display: block;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 4px;
}

.story-author span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Responsive Design for Success */
@media (max-width: 768px) {
    .pos-success-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pos-success-header h2 {
        font-size: 2rem;
    }
}
