
:root {
    --bf-color-primary: #ff007f;
    --bf-color-secondary: #ff8c00;
    --bf-dark-bg: #121212;
    --bf-card-bg: #1e1e1e;
    --bf-text-light: #f5f5f5;
    --bf-text-dark: #333;
}

.footer {
    background: var(--bf-card-bg) !important;
    padding-bottom: 75px !important;
}


main {
    background-color: var(--bf-dark-bg);
    color: var(--bf-text-light);
    font-family: 'Poppins', sans-serif;
}

.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
}

.section-title p {
    font-size: 1.2rem;
    color: #ccc;
}

.animated-gradient-text {
    background: linear-gradient(90deg, var(--bf-color-primary), var(--bf-color-secondary), var(--bf-color-primary));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-animation 4s linear infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.sale-hero {
    padding: 120px 0 80px 0;
    text-align: center;
    background: var(--bf-dark-bg) url('https://www.transparenttextures.com/patterns/carbon-fibre-v2.png');
    position: relative;
    overflow: hidden;
}

.sale-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 127, 0.15), transparent 70%);
    z-index: 0;
}

.sale-hero .container {
    position: relative;
    z-index: 1;
}

.sale-pretitle {
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bf-color-secondary);
    margin-bottom: 15px;
}

.sale-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.sale-subtitle {
    font-size: 1.8rem;
    color: var(--bf-text-light);
    margin-bottom: 20px;
    font-weight: 600;
}

.sale-usp {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.discount-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--bf-color-primary), var(--bf-color-secondary));
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    margin: 0 5px;
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.4);
    animation: pulse-discount 2s infinite;
}

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

.countdown-timer {
    margin-top: 50px;
}

.countdown-box {
    display: inline-block;
    margin: 0 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid var(--bf-color-primary);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.4);
    backdrop-filter: blur(10px);
    width: clamp(220px, 20%, 400px);
}

.countdown-box span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--bf-color-primary);
}

.countdown-box p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.urgency-banner {
    background: linear-gradient(90deg, rgba(255, 0, 127, 0.2), rgba(255, 140, 0, 0.2));
    padding: 15px;
    text-align: center;
    border-top: 2px solid var(--bf-color-primary);
    border-bottom: 2px solid var(--bf-color-primary);
    animation: pulse-border 2s infinite;
    height: 75px;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--bf-color-primary);
    }
    50% {
        border-color: var(--bf-color-secondary);
    }
}

.urgency-banner p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.urgency-banner .blink {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0.5;
    }
}

.billing-toggle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 20px;
}

.billing-toggle {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 40px;
}

.billing-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bf-color-primary), var(--bf-color-secondary));
    transition: .4s;
    border-radius: 34px;
}

.billing-slider:before {
    position: absolute;
    content: "";
    height: 32px;
    width: 32px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .billing-slider:before {
    transform: translateX(40px);
}

.billing-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ccc;
    transition: all 0.3s ease;
}

.billing-label.active {
    color: var(--bf-color-primary);
    transform: scale(1.1);
}

.yearly-bonus {
    display: inline-block;
    background: #ffd700;
    color: #000;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-left: 10px;
    vertical-align: middle;
}

.product-card {
    background: var(--bf-card-bg);
    border-radius: 20px;
    border: 2px solid transparent;
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--bf-color-secondary);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.3);
}

.product-card.featured {
    border-color: var(--bf-color-primary);
    box-shadow: 0 10px 30px rgba(255, 0, 127, 0.3);
    transform: scale(1.08);
}

.product-card.featured:hover {
    transform: scale(1.1) translateY(-15px);
    box-shadow: 0 15px 40px rgba(255, 0, 127, 0.5);
}

.sale-badge {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--bf-color-primary), var(--bf-color-secondary));
    color: #fff;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 1.1rem;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    animation: pulse-badge 1.5s infinite;
    z-index: 2;
}

.best-deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ffd700;
    color: #000;
    padding: 8px 15px;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: 25px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-badge {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 0, 127, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 127, 0);
    }
}

.product-card-header h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--bf-text-light);
}

.product-card-body {
    flex: 1;
}

.product-card-body ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    color: #ccc;
}

.product-card-body ul li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
}

.product-card-body ul li:last-child {
    border-bottom: none;
}

.product-card-body ul li strong {
    color: var(--bf-color-secondary);
    font-size: 1.1rem;
}

.product-card-footer {
    margin-top: auto;
}

.price-wrapper {
    margin-bottom: 25px;
}

.discount-percentage {
    display: inline-block;
    background: var(--bf-color-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 10px;
}

.price-old {
    font-size: 1.4rem;
    text-decoration: line-through;
    color: #888;
    display: block;
    margin-bottom: 5px;
}

.price-new {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: var(--bf-color-primary);
    display: block;
    margin-bottom: 5px;
}

.price-interval {
    font-size: 1.1rem;
    color: #ccc;
}

.savings-info {
    font-size: 1rem;
    color: var(--bf-color-secondary);
    font-weight: 700;
    margin-top: 10px;
}

.total-price-info {
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 8px;
    font-style: italic;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.feature-item .icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: inline-block;
    line-height: 1;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bf-text-light);
    margin-bottom: 15px;
}

.feature-item p {
    color: #ccc;
    font-size: 1.05rem;
}

.testimonial-card {
    background: var(--bf-card-bg);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--bf-color-primary);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.2);
}

.testimonial-card p {
    font-style: italic;
    color: #ccc;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--bf-text-light);
    font-size: 1.05rem;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.trust-badges {
    text-align: center;
    padding: 40px 0;
    background: rgba(255, 255, 255, 0.02);
}

.trust-badge {
    display: inline-block;
    margin: 0 20px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    font-weight: 600;
}

.trust-badge i {
    color: var(--bf-color-secondary);
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.faq-item {
    background: var(--bf-card-bg);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--bf-color-primary);
}

.faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--bf-text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    margin-top: 15px;
    color: #ccc;
    display: none;
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-question::after {
    content: '\f078';
    font-family: 'Font Awesome 7 Pro';
    font-weight: 900;
    transition: transform 0.3s;
    color: var(--bf-color-primary);
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.final-cta {
    background: linear-gradient(135deg, var(--bf-color-primary), var(--bf-color-secondary));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.05) 10px,
            rgba(255, 255, 255, 0.05) 20px
    );
    animation: stripe-animation 20s linear infinite;
}

@keyframes stripe-animation {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    color: #fff;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.final-cta p {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 35px;
    font-weight: 600;
}

.btn-order {
    background: linear-gradient(90deg, var(--bf-color-primary), var(--bf-color-secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    background-size: 200% 100%;
    font-size: 1.1rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 20px rgba(255, 0, 127, 0.3);
}

.btn-order:hover {
    background-position: 100% 0;
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(255, 140, 0, 0.5);
}

.btn-order-white {
    background: #fff;
    color: var(--bf-color-primary);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.btn-order-white:hover {
    background: #fff;
    color: var(--bf-color-primary);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.5);
}

.btn-order:active {
    transform: scale(1.05);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(90deg, var(--bf-color-primary), var(--bf-color-secondary));
    padding: 15px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta p {
    margin: 0;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-right: 20px;
}

.sticky-cta .btn-order-white {
    padding: 10px 30px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .sale-title {
        font-size: 2.8rem;
    }

    .sale-subtitle {
        font-size: 1.3rem;
    }

    .sale-usp {
        font-size: 1.05rem;
    }

    .countdown-box {
        margin: 10px 5px;
        padding: 12px 18px;
    }

    .countdown-box span {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .price-new {
        font-size: 2.8rem;
    }

    .product-card.featured {
        transform: scale(1);
    }

    .product-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }

    .sticky-cta p {
        display: block;
        margin-bottom: 10px;
    }

    .final-cta h2 {
        font-size: 2rem;
    }

    .final-cta p {
        font-size: 1.1rem;
    }

    .billing-toggle-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .billing-label {
        font-size: 1.1rem;
    }
}
