.pt-8b28dd09-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.pt-8b28dd09-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pt-8b28dd09-toggle-label {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    transition: color 0.3s ease;
}

.pt-8b28dd09-toggle-switch-wrapper {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    cursor: pointer;
}

.pt-8b28dd09-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pt-8b28dd09-toggle-switch {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2EC4B6;
    border-radius: 26px;
    transition: background-color 0.3s ease;
}

.pt-8b28dd09-toggle-switch::before {
    content: '';
    position: absolute;
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.pt-8b28dd09-toggle-input:checked + .pt-8b28dd09-toggle-switch::before {
    transform: translateX(24px);
}

.pt-8b28dd09-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pt-8b28dd09-card {
    position: relative;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pt-8b28dd09-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(46, 196, 182, 0.15);
    border-color: #2EC4B6;
}

.pt-8b28dd09-featured {
    border-color: #2EC4B6;
    border-width: 3px;
    box-shadow: 0 8px 30px rgba(46, 196, 182, 0.2);
}

.pt-8b28dd09-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2EC4B6 0%, #1C9B8E 100%);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pt-8b28dd09-icon {
    font-size: 3rem;
    color: #2EC4B6;
    margin-bottom: 1rem;
}

.pt-8b28dd09-plan-name {
    font-size: 1.75rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 1.5rem 0;
    font-family: 'Roboto Slab', serif;
}

.pt-8b28dd09-price-wrapper {
    margin-bottom: 2rem;
}

.pt-8b28dd09-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
    transition: opacity 0.3s ease;
}

.pt-8b28dd09-transitioning {
    opacity: 0.5;
}

.pt-8b28dd09-currency {
    font-size: 1.5rem;
    font-weight: 500;
    color: #666;
}

.pt-8b28dd09-amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2EC4B6;
    line-height: 1;
}

.pt-8b28dd09-period {
    font-size: 1rem;
    color: #999;
    font-weight: 400;
}

.pt-8b28dd09-discount {
    display: none;
    background: #FFF3CD;
    color: #856404;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.pt-8b28dd09-toggle-input:checked ~ .pt-8b28dd09-plans .pt-8b28dd09-discount {
    display: inline-block;
}

.pt-8b28dd09-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
    flex-grow: 1;
}

.pt-8b28dd09-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
}

.pt-8b28dd09-feature:last-child {
    border-bottom: none;
}

.pt-8b28dd09-feature-icon {
    color: #2EC4B6;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pt-8b28dd09-button {
    display: inline-block;
    width: 100%;
    padding: 1rem 2rem;
    background: #2EC4B6;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    margin-top: auto;
}

.pt-8b28dd09-button:hover {
    background: #1C9B8E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 196, 182, 0.3);
}

.pt-8b28dd09-featured .pt-8b28dd09-button {
    background: linear-gradient(135deg, #2EC4B6 0%, #1C9B8E 100%);
}

@media (max-width: 768px) {
    .pt-8b28dd09-plans {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pt-8b28dd09-card {
        padding: 2rem 1.5rem;
    }

    .pt-8b28dd09-amount {
        font-size: 2.5rem;
    }

    .pt-8b28dd09-toggle {
        margin-bottom: 2rem;
    }
}