.payment-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.payment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.payment-info h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.price-display {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.price-big {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
}

.price-subtitle {
    display: block;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.benefits,
.guarantee {
    margin: 2rem 0;
}

.benefits h3,
.guarantee h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.benefits ul {
    list-style: none;
    padding: 0;
}

.benefits ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.benefits ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 900;
}

.security-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 2rem;
}

.security-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.payment-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.payment-form-container h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    margin: 2rem 0 1rem;
}

.total-amount {
    color: var(--primary-color);
    font-size: 2rem;
}

.btn-large {
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paypal-icon {
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.form-footer-note {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
    margin-top: 0.25rem;
    flex-shrink: 0;
}

@media (max-width: 968px) {
    .payment-wrapper {
        grid-template-columns: 1fr;
    }

    .payment-info {
        position: relative;
        top: 0;
    }
}
