/* POS Common Styles - Shared across all POS sections */

/* Font Face Declaration */
@font-face {
    font-family: 'DegularVariable';
    src: url('../../fonts/DegularVariable.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* POS CTA Section */
.pos-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2C5F41 0%, #1a3d2e 100%);
    color: white;
    text-align: center;
}

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

.pos-cta-content h2 {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pos-cta-content p {
    font-family: 'DegularVariable', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.pos-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.cta-stat {
    text-align: center;
}

.cta-stat .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #4ECDC4;
    margin-bottom: 8px;
}

.cta-stat .stat-text {
    font-size: 1rem;
    opacity: 0.8;
}

.pos-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.pos-cta-guarantee {
    font-size: 0.95rem;
    opacity: 0.8;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
    max-width: 600px;
    margin: 20px auto 0;
    padding: 0 20px;
}

.guarantee-item {
    text-align: center;
    font-size: 14px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Scroll-triggered animations */
.pos-benefits-section,
.pos-features-section,
.pos-comparison-section,
.pos-success-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.pos-benefits-section.animate-in,
.pos-features-section.animate-in,
.pos-comparison-section.animate-in,
.pos-success-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive for guarantee grid */
@media (max-width: 768px) {
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        max-width: 400px;
    }
    
    .guarantee-item {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .pos-cta-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pos-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pos-cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pos-cta-content h2 {
        font-size: 2rem;
    }
}
