/* ========================================
   PAYMENT PAGE STYLES
   ======================================== */

.payment-hero {
    padding: 120px 0 40px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Notice Section */
.notice-section {
    padding: 2rem 0;
    background: var(--dark);
}

.notice-box {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.notice-box h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.notice-box ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.notice-box li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.bonus-highlight {
    background: rgba(255, 51, 102, 0.1);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 1.25rem;
    text-align: center;
    font-size: 1.1rem;
}

/* Payment Options */
.payment-options {
    padding: 3rem 0;
    background: var(--darker);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.payment-card {
    background: var(--card-bg);
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.payment-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
}

.payment-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--border);
    color: var(--text-muted);
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom-left-radius: 12px;
}

.card-badge.popular {
    background: var(--primary);
    color: white;
}

.card-header {
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-breakdown {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.card-features {
    padding: 1.5rem;
}

.card-features ul {
    list-style: none;
}

.card-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.card-features li:last-child {
    border-bottom: none;
}

.btn-buy {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 1.25rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    margin: 0 1.5rem 1.5rem;
    border-radius: 12px;
}

.btn-buy:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(255, 51, 102, 0.4);
}

.btn-buy-featured {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
}

.two-girl-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* How It Works */
.how-it-works {
    padding: 3rem 0;
    background: var(--dark);
}

.steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 1rem;
}

.step h3 {
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-muted);
}

/* Rates Breakdown */
.rates-breakdown {
    padding: 3rem 0;
    background: var(--darker);
}

.rates-table {
    max-width: 600px;
    margin: 0 auto 2rem;
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.rate-row {
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.rate-row:last-child {
    border-bottom: none;
}

.rate-row.highlight {
    background: rgba(255, 51, 102, 0.1);
    font-weight: 700;
}

.payment-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.payment-info h3 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.method {
    background: var(--card-bg);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 600;
}

.prepaid-note {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.billing-note {
    color: var(--text);
    font-weight: 600;
}

/* FAQ */
.payment-faq {
    padding: 3rem 0;
    background: var(--dark);
}

.faq-grid {
    max-width: 800px;
    margin: 2rem auto 0;
}

/* Desktop */
@media (min-width: 768px) {
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .steps {
        grid-template-columns: repeat(3, 1fr);
    }
}