/* Pricing Section */
.pricing-section {
    position: relative;
    padding: var(--spacing-xl) 0;
    color: #fff;
    background-color: #000;
    width: 100%;
}

.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    width: 100%;
}

.pricing-offer {
    text-align: left;
    position: relative;
    padding: var(--spacing-lg);
    background-color: #851429;
    background-image: url('assets/images/pricing-bg.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-top-left-radius: var(--border-radius-lg);
    border-bottom-left-radius: var(--border-radius-lg);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    order: 1; /* For desktop */
}

.pricing-headline {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #fff;
}

.pricing-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

.pricing-checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

.pricing-checklist li:last-child {
    border-bottom: none;
}

.pricing-checklist li svg {
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.pricing-checklist li span:first-of-type {
    white-space: normal;
    padding-right: 10px;
    flex: 1;
}

.pricing-checklist .price {
    margin-left: auto;
    font-weight: 700;
    font-size: 1.4rem;
    white-space: nowrap;
}

.pricing-total {
    margin-top: var(--spacing-lg);
    font-size: 1.3rem;
    line-height: 1.5;
    font-weight: 500;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.pricing-total p {
    margin: 0;
    color: #ffffff;
}


.pricing-total strong {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
}

.pricing-card {
    background-color: #fff;
    color: var(--dark-color);
    border-top-right-radius: var(--border-radius-lg);
    border-bottom-right-radius: var(--border-radius-lg);
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    order: 2; /* For desktop */
}

.offer-label {
    display: inline-block;
    background-color: #D12B27;
    color: #fff;
    font-weight: 700;
    padding: 8px 24px;
    border-radius: var(--border-radius-md);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
    position: relative;
}

.offer-label:before, 
.offer-label:after {
    content: '';
    height: 1px;
    background-color: #ccc;
    width: 80px;
    position: absolute;
    top: 50%;
}

.offer-label:before {
    right: 100%;
    margin-right: 15px;
}

.offer-label:after {
    left: 100%;
    margin-left: 15px;
}

.original-price {
    font-size: 2.4rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: var(--spacing-xs);
}

.discount-price {
    margin-bottom: var(--spacing-sm);
    line-height: 1;
    text-align: center;
}

.discount-price .tylko {
    font-size: 1.8rem;
    color: var(--dark-color);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.discount-price span:not(.tylko):not(.currency) {
    font-size: 7rem;
    font-weight: 800;
    color: #f54540;
    line-height: 1;
}

.discount-price .currency {
    font-size: 4rem;
    font-weight: 800;
    color: #f54540;
}

.savings-text {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--dark-red);
    font-weight: 700;
}

.access-text {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-md);
    color: #188d0e;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #DDFFD5;
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    border: 2px solid #26981B;
}

.one-time-payment {
    font-size: 1.3rem;
    font-weight: 700;
    color: #D12B27;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    background-color: #FFF9E5;
    padding: 10px 15px;
    border-radius: var(--border-radius-md);
    border: 2px dashed #D12B27;
}

.pricing-cta {
    margin-bottom: var(--spacing-md);
}

.countdown-wrapper {
    margin-top: var(--spacing-md);
}

.countdown-label {
    font-size: 1rem;
    margin-bottom: var(--spacing-xs);
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.countdown-item {
    background-color: #333;
    color: #fff;
    padding: 10px;
    min-width: 70px;
    border-radius: var(--border-radius-sm);
}

.countdown-number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-unit {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.pricing-payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.pricing-payment-icon {
    height: 36px;
}

/* Responsive adjustments for pricing section */
@media (max-width: 992px) {
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 0;
        max-width: 90%;
    }
    
    .pricing-headline {
        font-size: 2.4rem;
        text-align: center;
    }
    
    .pricing-offer {
        order: 0; /* Show this first */
        border-radius: 0;
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg);
        margin-bottom: 0;
    }
    
    .pricing-card {
        order: 1; /* Show this second */
        border-radius: 0;
        border-bottom-left-radius: var(--border-radius-lg);
        border-bottom-right-radius: var(--border-radius-lg);
        margin-top: 0;
    }
    
    .discount-price span:not(.tylko):not(.currency) {
        font-size: 4rem;
    }
    
    .discount-price .currency {
        font-size: 2.5rem;
    }
    
    .offer-label:before, 
    .offer-label:after {
        width: 50px;
    }
}

@media (max-width: 767px) {
    body {
        overflow-x: hidden; /* Prevent horizontal scrolling */
    }
    
    .pricing-section {
        padding: var(--spacing-lg) 0;
        background-color: #000;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    .pricing-container {
        width: 100%;
        max-width: 100%;
        padding: 16px;
        gap: 0;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .pricing-headline {
        font-size: 2rem;
        text-align: center;
    }
    
    .pricing-offer {
        padding: var(--spacing-sm);
        background-color: #851429;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        order: 0;
        border-radius: 0;
        border-top-left-radius: var(--border-radius-lg);
        border-top-right-radius: var(--border-radius-lg);
        margin-bottom: 0;
    }
    
    .pricing-card {
        padding: var(--spacing-sm);
        padding-bottom: 36px;
        background-color: #fff;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
        order: 1;
        border-radius: 0;
        border-bottom-left-radius: var(--border-radius-lg);
        border-bottom-right-radius: var(--border-radius-lg);
        margin-top: 0;
    }
    
    .pricing-checklist {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    
    .pricing-checklist li {
        font-size: 0.95rem;
        padding-left: 25px;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: var(--spacing-sm);
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .pricing-checklist .price {
        font-size: 1.1rem;
        margin-left: 0;
        margin-top: 0.3rem;
        white-space: normal;
    }
    
    .pricing-checklist li svg {
        width: 18px;
        height: 18px;
        top: 3px;
    }
    
    .pricing-checklist li span:first-of-type {
        display: block;
        width: 100%;
        max-width: 100%;
        padding-right: 0;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .pricing-total {
        width: 100%;
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    
    .pricing-total p {
        font-size: 1.1rem;
        width: 100%;
        max-width: 100%;
        
    }
    
    .pricing-total strong {
        font-size: 1.4rem;
        white-space: normal;
        width: 100%;
        max-width: 100%;
    }
    
    .original-price {
        font-size: 1.8rem;
    }
    
    .discount-price {
        margin-bottom: 10px;
    }
    
    .discount-price .tylko {
        font-size: 1.4rem;
        margin-bottom: 0;
    }
    
    .discount-price span:not(.tylko):not(.currency) {
        font-size: 4.5rem;
    }
    
    .discount-price .currency {
        font-size: 2rem;
    }
    
    .countdown-item {
        min-width: 60px;
        padding: 8px;
    }
    
    .countdown-number {
        font-size: 1.5rem;
    }
    
    .pricing-payment-icon {
        height: 28px;
    }
    
    .offer-label {
        font-size: 0.9rem;
        padding: 6px 18px;
    }
    
    .offer-label:before, 
    .offer-label:after {
        width: 30px;
    }
    
    .pricing-payment-methods {
        gap: 8px;
    }
    
    .start-button {
        font-size: 1.25rem;
        padding: 15px 20px;
    }

    .countdown-label {
        color: #333;
    }

    .one-time-payment {
        font-size: 1.1rem;
        padding: 8px 12px;
    }
    
    .access-text {
        font-size: 1.1rem;
        padding: 8px 12px;
    }
}

/* Start Button Styles */
@keyframes brilho {
    0% {
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    }
    50% {
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.5);
    }
    100% {
        box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    }
}

/* Add pulse animation for the button */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.start-button {
    font-family: var(--font-heading);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(613.92% 177.57% at 49.83% 145.39%, rgba(107, 209, 97, 0.00) 0%, #26981B 100%), 
                radial-gradient(540.93% 232.48% at 42.41% -95.39%, rgba(119, 211, 110, 0.00) 0%, #26981B 71.91%, #77D36E 100%), 
                radial-gradient(100.05% 100% at 50.15% 0%, #B0FFA8 0%, #375834 50%, #398631 100%);
    color: white;
    background-blend-mode: overlay, screen, normal;
    font-weight: 800;
    padding: 24px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0px 4px 0px 0px #188D0E, 0px 24px 64px 0px rgba(121, 241, 110, 0.32);
    animation: brilho 2s ease-in-out 0s infinite, pulse 2s ease-in-out 0s infinite;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.start-button:hover {
    color: white;
    text-decoration: none;
    box-shadow: 0px 6px 0px 0px #188D0E, 0px 30px 70px 0px rgba(121, 241, 110, 0.4);
}

.start-button:active {
    transform: translateY(2px);
    box-shadow: 0px 2px 0px 0px #188D0E, 0px 15px 50px 0px rgba(121, 241, 110, 0.25);
} 