.pt-wrapper {
    font-family: inherit;
}
.pt-toggle-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}
.pt-toggle-switch {
    width: 60px;
    height: 32px;
    background: #e2e8f0;
    border-radius: 30px;
    position: relative;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.3s;
}
.pt-toggle-switch.annual {
    background: #000;
}
.pt-toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.pt-toggle-switch.annual .pt-toggle-slider {
    transform: translateX(28px);
}
.pt-discount-badge {
    background: #e6f4ea;
    color: #1e8e3e;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    font-weight: bold;
}
.pt-grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 768px) {
    .pt-grid {
        grid-template-columns: 1fr !important;
    }
}
.pt-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 30px;
    position: relative;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.pt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.pt-card.featured {
    border: 2px solid #000;
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 1;
}
.pt-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}
.pt-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    font-weight: bold;
}
.pt-plan-name {
    margin: 10px 0 20px;
    font-size: 24px;
}
.pt-price-container {
    margin-bottom: 25px;
}
.pt-currency {
    font-size: 20px;
    vertical-align: super;
}
.pt-price {
    font-size: 48px;
    font-weight: bold;
    transition: opacity 0.3s;
}
.pt-price.fading {
    opacity: 0;
}
.pt-period {
    color: #64748b;
}
.pt-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}
.pt-features li {
    padding: 8px 0;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pt-features i {
    color: #10b981;
}
.pt-btn {
    display: block;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    transition: opacity 0.3s;
}
.pt-btn:hover {
    opacity: 0.8;
}
