/* ===================================================
   Payment Page — /payment/
   =================================================== */

#pagetitle {
    display: none !important;
}

.pm-page {
    padding-bottom: 80px;
}

/* ===== HERO ===== */
.pm-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #111 0%, #1e1e24 50%, #252530 100%);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    padding: 50px 60px;
    min-height: 260px;
}

.pm-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 5% 50%, rgba(133,198,53,0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 20%, rgba(133,198,53,0.07) 0%, transparent 45%),
        radial-gradient(circle at 55% 95%, rgba(133,198,53,0.05) 0%, transparent 40%);
    pointer-events: none;
}

.pm-hero__body {
    position: relative;
    z-index: 2;
}

.pm-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(133,198,53,0.15);
    border: 1px solid rgba(133,198,53,0.3);
    color: #85c635;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
    width: fit-content;
}

.pm-hero__title {
    font-size: 44px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.15;
}

.pm-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.pm-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pm-hero__chips span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
}

.pm-hero__chips span i {
    color: #85c635;
}

.pm-hero__stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex-shrink: 0;
}

.pm-hero__stat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 16px 28px;
    text-align: center;
    min-width: 155px;
}

.pm-hero__stat-val {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #85c635;
    line-height: 1;
    margin-bottom: 4px;
}

.pm-hero__stat-lbl {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

/* ===== INTRO ===== */
.pm-intro {
    background: #f8f8f8;
    border-radius: 14px;
    padding: 22px 36px;
    margin-bottom: 36px;
    border-left: 4px solid #85c635;
}

.pm-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

/* ===== METHODS ===== */
.pm-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
}

.pm-method {
    background: #fff;
    border: 1px solid #efefef;
    border-radius: 16px;
    padding: 28px 36px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: box-shadow 0.25s, border-color 0.25s;
    position: relative;
}

.pm-method:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    border-color: #e0e0e0;
}

.pm-method--accent {
    background: linear-gradient(135deg, #f6fff0 0%, #eefce0 100%);
    border-color: rgba(133,198,53,0.25);
}

.pm-method--accent:hover {
    border-color: rgba(133,198,53,0.5);
}

.pm-method__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #85c635;
    transition: transform 0.2s;
}

.pm-method:hover .pm-method__icon {
    transform: scale(1.05);
}

.pm-method--accent .pm-method__icon {
    background: rgba(133,198,53,0.15);
}

.pm-method__body {
    flex: 1;
    min-width: 0;
}

.pm-method__title {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.pm-method__text {
    font-size: 14.5px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.pm-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: #85c635;
    text-decoration: none;
    transition: gap 0.2s;
}

.pm-link:hover {
    gap: 10px;
}

.pm-method__badge {
    flex-shrink: 0;
    align-self: center;
    background: #f5f5f5;
    color: #888;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 14px;
    border-radius: 50px;
    white-space: nowrap;
}

.pm-method__badge--green {
    background: rgba(133,198,53,0.15);
    color: #4a8a10;
}

/* ===== CTA ===== */
.pm-cta {
    background: linear-gradient(135deg, #111 0%, #1e1e24 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.pm-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(133,198,53,0.1) 0%, transparent 55%);
    pointer-events: none;
}

.pm-cta__text {
    position: relative;
    z-index: 2;
    flex: 1;
}

.pm-cta__text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.pm-cta__text p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 8px;
}

.pm-cta__sign {
    margin-top: 16px !important;
    color: rgba(255,255,255,0.4) !important;
    font-size: 13px !important;
}

.pm-cta__sign strong {
    color: #85c635;
}

.pm-cta__actions {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.pm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.pm-btn--primary {
    background: #85c635;
    color: #fff;
}

.pm-btn--primary:hover {
    background: #74b02a;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(133,198,53,0.35);
}

.pm-btn--outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.pm-btn--outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .pm-hero {
        grid-template-columns: 1fr;
        padding: 40px 36px;
    }
    .pm-hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .pm-hero__title { font-size: 36px; }
    .pm-cta {
        flex-direction: column;
        padding: 40px 36px;
    }
    .pm-cta__actions { flex-direction: row; }
}

@media (max-width: 768px) {
    .pm-hero { padding: 30px 24px; }
    .pm-hero__title { font-size: 28px; }
    .pm-method {
        padding: 22px 20px;
        gap: 16px;
    }
    .pm-method__badge { display: none; }
    .pm-cta { padding: 30px 24px; }
    .pm-cta__text h2 { font-size: 22px; }
    .pm-cta__actions { flex-direction: column; }
}

@media (max-width: 480px) {
    .pm-hero__chips span { font-size: 12px; padding: 6px 11px; }
}
