@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Syne:wght@700;800&display=swap');

.pricing-5a056024 {
    --pt-primary: #00e676;
    --pt-bg: #080a14;
    --pt-card-bg: #0c0e1e;
    --pt-inactive-tab: #1a2280;
    --pt-border: rgba(66, 133, 244, 0.5);
    
    background-color: var(--pt-bg);
    padding: 3rem 1rem;
    font-family: 'DM Sans', sans-serif;
    color: #fff;
}

.pt-title-5a056024 {
    font-family: 'Syne', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.pt-tabs-5a056024 {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pt-tab-5a056024 {
    background: var(--pt-inactive-tab);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.pt-tab-5a056024.active {
    background: var(--pt-primary);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 230, 118, 0.4);
}

.pt-grid-5a056024 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pt-card-5a056024 {
    background: var(--pt-card-bg);
    border: 1.5px solid var(--pt-border);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pt-card-5a056024:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pt-card-5a056024.featured {
    background: linear-gradient(160deg, #1a2a6c, #2541b2);
    border-color: var(--pt-primary);
}

.pt-badge-5a056024 {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pt-primary);
    color: #000;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8rem;
}

.pt-plan-name-5a056024 {
    font-family: 'Syne', sans-serif;
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.pt-price-wrap-5a056024 {
    text-align: center;
    font-family: 'Syne', sans-serif;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.pt-currency-5a056024 { font-size: 1.5rem; margin-top: 5px; }
.pt-price-5a056024 { font-size: 3rem; font-weight: bold; }

.pt-period-label-5a056024 {
    text-align: center;
    color: #a0aab2;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.pt-features-5a056024 {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pt-features-5a056024 li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

.pt-btn-5a056024 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--pt-primary);
    color: #000;
    text-decoration: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: bold;
    margin-bottom: 10px;
    transition: background 0.3s;
}

.pt-btn-5a056024:hover {
    background: #00c853;
}

.pt-ready-text-5a056024 {
    text-align: center;
    color: #a0aab2;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.pt-device-icons-5a056024 {
    display: flex;
    justify-content: center;
    gap: 15px;
    text-align: center;
    font-size: 0.7rem;
    color: #a0aab2;
}

@media (max-width: 1024px) {
    .pt-grid-5a056024 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .pt-grid-5a056024 { grid-template-columns: 1fr; }
}