/* ─── PAYMENT METHODS SHOWCASE ─────────────────────────── */
.methods-section {
    padding: 96px 0;
    background: var(--bg);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 56px;
}

@media(min-width:900px) {
    .methods-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.method-card {
    background: var(--card-bg, #fff);
    border: 1.5px solid var(--border, #e8eaf0);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
}

.method-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .3s;
    border-radius: inherit;
}

.method-card:hover {
    transform: translateY(-6px);
}

.method-card:hover::before {
    opacity: 1;
}

.method-card.paypal::before {
    background: radial-gradient(circle at 50% 0%, rgba(0, 112, 243, .07) 0%, transparent 70%);
}

.method-card.stripe::before {
    background: radial-gradient(circle at 50% 0%, rgba(99, 91, 255, .07) 0%, transparent 70%);
}

.method-card.meru::before {
    background: radial-gradient(circle at 50% 0%, rgba(0, 184, 148, .07) 0%, transparent 70%);
}

.method-card.payoneer::before {
    background: radial-gradient(circle at 50% 0%, rgba(255, 100, 25, .07) 0%, transparent 70%);
}

.method-card:hover.paypal {
    border-color: #0070f3;
    box-shadow: 0 16px 48px rgba(0, 112, 243, .13);
}

.method-card:hover.stripe {
    border-color: #635bff;
    box-shadow: 0 16px 48px rgba(99, 91, 255, .13);
}

.method-card:hover.meru {
    border-color: #00b894;
    box-shadow: 0 16px 48px rgba(0, 184, 148, .13);
}

.method-card:hover.payoneer {
    border-color: #ff6419;
    box-shadow: 0 16px 48px rgba(255, 100, 25, .13);
}

.method-logo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    font-weight: 800;
}

.method-card.paypal .method-logo-wrap {
    background: rgba(0, 112, 243, .1);
    color: #0070f3;
}

.method-card.stripe .method-logo-wrap {
    background: rgba(99, 91, 255, .1);
    color: #635bff;
}

.method-card.meru .method-logo-wrap {
    background: rgba(0, 184, 148, .1);
    color: #00b894;
}

.method-card.payoneer .method-logo-wrap {
    background: rgba(255, 100, 25, .1);
    color: #ff6419;
}

.method-name {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary, #0f1117);
}

.method-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.method-card.paypal .method-tag {
    background: rgba(0, 112, 243, .1);
    color: #0070f3;
}

.method-card.stripe .method-tag {
    background: rgba(99, 91, 255, .1);
    color: #635bff;
}

.method-card.meru .method-tag {
    background: rgba(0, 184, 148, .1);
    color: #00b894;
}

.method-card.payoneer .method-tag {
    background: rgba(255, 100, 25, .1);
    color: #ff6419;
}

.method-desc {
    font-size: .875rem;
    color: var(--text-secondary, #6b7280);
    line-height: 1.6;
}

.method-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 18px;
    font-size: .78rem;
    font-weight: 600;
    color: #00C853;
}

.method-status::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #00C853;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(0, 200, 83, .2);
    animation: pulse-dot 4s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(0, 200, 83, .2);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(0, 200, 83, .05);
    }
}

/* ─── HOW WE VERIFY - STEPS ────────────────────────────── */
.verify-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 56px;
}

@media(min-width:860px) {
    .verify-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
}

.vstep {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    position: relative;
}

.vstep:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 48px;
    font-size: 1.4rem;
    color: var(--border, #e0e3ea);
    display: none;
}

@media(min-width:860px) {
    .vstep:not(:last-child)::after {
        display: block;
    }
}

.vstep-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .15);
}

.vstep-num {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #00C853;
    margin-bottom: 6px;
}

.vstep h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.vstep p {
    font-size: .85rem;
    color: var(--text-secondary, #6b7280);
    line-height: 1.6;
}

/* ─── PAYMENT DEMO CARD ─────────────────────────────────── */
.demo-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.demo-visual {
    flex: 1 1 340px;
}

.demo-text {
    flex: 1 1 320px;
}

.demo-card {
    background: linear-gradient(135deg, #0f172a 0%, #1a2340 100%);
    border-radius: 24px;
    padding: 28px 32px;
    color: #fff;
    box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
    position: relative;
    overflow: hidden;
}

.demo-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(0, 200, 83, .15) 0%, transparent 70%);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.demo-title {
    font-size: .85rem;
    opacity: .6;
}

.demo-live {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 600;
    color: #00C853;
}

.demo-live::before {
    content: '';
    width: 7px;
    height: 7px;
    background: #00C853;
    border-radius: 50%;
    animation: pulse-dot 4s infinite;
}

.demo-method-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 12px;
}

.demo-method-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: .9rem;
    flex-shrink: 0;
}

.demo-method-name {
    font-size: .85rem;
    font-weight: 600;
    flex: 1;
}

.demo-method-amount {
    font-size: .85rem;
    opacity: .75;
}

.demo-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 200, 83, .15);
    border: 1px solid rgba(0, 200, 83, .3);
    border-radius: 8px;
    padding: 4px 10px;
    font-size: .72rem;
    font-weight: 700;
    color: #00C853;
}

.demo-footer {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: .75rem;
    opacity: .5;
    text-align: center;
}

/* ─── WHY SECTION ────────────────────────────────────────── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.why-card {
    background: var(--card-bg, #fff);
    border: 1.5px solid var(--border, #e8eaf0);
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform .2s, box-shadow .2s;
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.why-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.why-icon.green {
    background: rgba(0, 200, 83, .12);
}

.why-icon.purple {
    background: rgba(108, 99, 255, .12);
}

.why-icon.orange {
    background: rgba(255, 107, 53, .12);
}

.why-icon.blue {
    background: rgba(0, 112, 243, .12);
}

.why-card h3 {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-card p {
    font-size: .83rem;
    color: var(--text-secondary, #6b7280);
    line-height: 1.6;
}

/* ─── STRIP - METHODS MARQUEE ────────────────────────────── */
.payment-strip {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    padding: 18px 0;
    overflow: hidden;
}

.payment-strip-inner {
    display: flex;
    gap: 48px;
    align-items: center;
    white-space: nowrap;
    width: max-content;
}


.strip-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .7);
    flex-shrink: 0;
}

.strip-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #00C853;
    flex-shrink: 0;
}

@media(prefers-color-scheme:dark) {

    .method-card,
    .why-card {
        background: #111827;
        border-color: #1f2937;
    }
}