.pricing-section {
    padding: calc(var(--space-xl) * 1.5) 0;
    background-color: var(--color-bg-light);
    text-align: center;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: var(--color-brand);
    margin-bottom: var(--space-sm);
}

.pricing-header p {
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: var(--space-xl);
}

.pricing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    position: relative;
}

.toggle-label {
    font-weight: 500;
    color: var(--color-brand);
}

/* Switch Styles */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-brand);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: var(--color-accent);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.discount-badge {
    position: absolute;
    right: -100px;
    background-color: var(--color-success);
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    transition: all 0.25s ease-out;
}

.pricing-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xl);
    justify-content: center;
    align-items: stretch;
}

/* Pricing Card */
.pricing-card {
    background-color: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    width: 100%;
    max-width: 450px;
    box-shadow: 0 20px 40px rgba(13, 31, 45, 0.08);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    display: flex;
    flex-direction: column;
}

.custom-bot-card {
    justify-content: center;
    background: linear-gradient(135deg, #fdfdfd 0%, #f0f7fa 100%);
    border: 2px dashed rgba(0, 180, 216, 0.4);
}

.custom-bot-card h3 {
    font-size: 1.8rem;
    color: var(--color-brand);
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.custom-bot-card .custom-bot-desc {
    color: var(--color-text-dark);
    opacity: 0.8;
    margin-bottom: var(--space-xl);
}

.custom-bot-actions {
    margin-top: auto;
}

.pricing-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-brand);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.pricing-amount .currency {
    font-size: 1.2rem;
    font-weight: 500;
    margin-left: 0.2rem;
}

.pricing-amount .period {
    font-size: 1rem;
    color: var(--color-text-dark);
    opacity: 0.6;
    margin-left: 0.5rem;
}

.pricing-original-price {
    font-size: 0.9rem;
    color: #e74c3c;
    text-decoration: line-through;
    margin-bottom: var(--space-md);
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: var(--space-lg) 0;
}

.pricing-features li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.icon-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232ECC71'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    margin-top: 0.2rem;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: white;
}

.btn-whatsapp:hover {
    background-color: #20b858;
    transform: scale(1.03);
}

.guarantee-badge {
    margin-top: var(--space-lg);
    font-size: 0.85rem;
    color: var(--color-text-dark);
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.guarantee-badge::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M9 12l2 2 4-4m5.618-4.016A11.955 11.955 0 0112 2.944a11.955 11.955 0 01-8.618 3.04A12.02 12.02 0 003 9c0 5.591 3.824 10.29 9 11.622 5.176-1.332 9-6.03 9-11.622 0-1.042-.133-2.052-.382-3.016z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
}

@media (max-width: 480px) {
    .discount-badge {
        right: auto;
        left: 50%;
        top: -25px;
        transform: translateX(-50%) scale(0) !important;
    }
    input:checked ~ .discount-badge {
        transform: translateX(-50%) scale(1) !important;
    }
}
