/* ============================================================
   SHOPPI PAY — MODERN REDESIGN
   Premium Fintech Aesthetic (Inspired by shoppi.finance)
   ============================================================ */

:root {
    --pay-brand: #FF4B6E;
    --pay-brand-gradient: linear-gradient(135deg, #FF4B6E 0%, #FF8E53 100%);
    --pay-dark: #0f172a;
    --pay-slate: #1e293b;
    --pay-light: #f8fafc;
    --pay-text: #334155;
    --pay-text-muted: #64748b;
    --pay-white: #ffffff;
    --pay-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --pay-radius: 24px;
}

#shoppipay {
    font-family: 'Inter', sans-serif;
    color: var(--pay-text);
    background: var(--pay-white);
}

#shoppipay h1,
#shoppipay h2,
#shoppipay h3,
#shoppipay h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--pay-dark);
    font-weight: 700;
}

/* — Hero Section — */
.pay-hero {
    padding: 100px 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 75, 110, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(67, 97, 238, 0.05) 0%, transparent 40%);
}

.pay-hero h1 {
    font-size: 64px;
    letter-spacing: -2px;
    line-height: 1.1;
    margin-bottom: 24px;
}

.pay-hero .lead {
    font-size: 20px;
    color: var(--pay-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-mockup {
    position: relative;
    z-index: 1;
}

.hero-mockup::after {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: radial-gradient(circle, rgba(255, 75, 110, 0.1) 0%, transparent 70%);
    z-index: -1;
}

/* — Media/Partners — */
.media-partners {
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.media-partners p {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--pay-text-muted);
    margin-bottom: 25px;
}

.partner-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    opacity: 0.6;
    filter: grayscale(1);
    transition: var(--pay-transition);
}

.partner-grid img {
    height: 25px;
}

/* — Features — */
.pay-features {
    padding: 100px 0;
    background: var(--pay-light);
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--pay-radius);
    box-shadow: var(--pay-shadow);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--pay-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--pay-brand);
    margin-bottom: 25px;
}

/* — Crypto Section — */
.crypto-section {
    padding: 100px 0;
    background: var(--pay-dark);
    color: white;
    border-radius: 40px;
    margin: 0 20px;
}

.crypto-section h2,
.crypto-section h3 {
    color: white;
}

.crypto-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--pay-radius);
    padding: 30px;
}

.crypto-badge {
    background: var(--pay-brand-gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

/* — FAQ — */
.pay-faq {
    padding: 100px 0;
}

.pay-faq .card {
    border: none;
    background: var(--pay-light);
    border-radius: 16px !important;
    margin-bottom: 15px;
}

.pay-faq .card-header {
    background: transparent;
    border: none;
    padding: 20px 30px;
}

.pay-faq .btn-link {
    font-weight: 700;
    color: var(--pay-dark) !important;
    text-decoration: none;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
}

/* — CTA — */
.cta-premium {
    background: var(--pay-brand-gradient);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-premium h2 {
    color: white;
    font-size: 42px;
}

.btn-white {
    background: white;
    color: var(--pay-brand);
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
    .pay-hero h1 {
        font-size: 42px;
    }

    .crypto-section {
        margin: 0;
        border-radius: 0;
    }
}