.buy-header {
    text-align: center;
    padding: 48px 40px;
    background: rgba(10, 10, 12, 0.5);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    margin-bottom: 40px;
}

.buy-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -1px;
}

.buy-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.pricing-section {
    margin-bottom: 50px;
}

.pricing-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 12px;
}

.pricing-section .section-subtitle {
    text-align: center;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(10, 10, 12, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease;
}

.pricing-card:hover {
    border-color: var(--border-hover);
}

.pricing-card.featured {
    border-color: rgba(212, 0, 106, 0.28);
    background: linear-gradient(140deg, rgba(212, 0, 106, 0.04), transparent);
}

.pricing-card.featured::before {
    content: 'POPULAR';
    position: absolute;
    top: 14px;
    right: -30px;
    background: var(--primary-pink);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
}

.pricing-card-header {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-plan-name {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.pricing-currency {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.pricing-value {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.pricing-period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li .check-icon {
    width: 18px;
    height: 18px;
    stroke: #00ff80;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.pricing-features li .x-icon {
    width: 18px;
    height: 18px;
    stroke: rgba(255, 255, 255, 0.2);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.25);
}

.purchase-btn {
    width: 100%;
    padding: 16px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.purchase-btn svg {
    width: 18px;
    height: 18px;
}

.purchase-btn-primary {
    background: #fff;
    color: #000;
}

.purchase-btn-primary:hover {
    opacity: 0.9;
}

.purchase-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.purchase-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.comparison-section {
    margin-bottom: 50px;
}

.comparison-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.comparison-table-wrapper {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead {
    background: rgba(255, 255, 255, 0.03);
}

.comparison-table th {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 16px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.comparison-table td:first-child {
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table .check-cell {
    color: #00ff80;
}

.comparison-table .x-cell {
    color: rgba(255, 255, 255, 0.15);
}

.faq-section {
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.guarantee-badge {
    max-width: 900px;   
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 40px;
    background: #0a0a0c;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    margin-bottom: 50px;
}

.guarantee-badge .badge-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(0, 255, 128, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-badge .badge-icon svg {
    width: 32px;
    height: 32px;
    stroke: #00ff80;
    fill: none;
    stroke-width: 2;
}

.guarantee-badge h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.guarantee-badge p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .buy-header h1 {
        font-size: 36px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-value {
        font-size: 48px;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
    }
    
    .comparison-table {
        min-width: 600px;
    }
}