/* ============================================
   SPLIT PURCHASE PAGE - PROFESSIONAL REDESIGN
   No emojis. Clean. Modern. Conversion-focused.
   ============================================ */

/* Hero - Full Width with Shopping Background */
.hero-fullwidth {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 40px 100px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%),
                url('https://images.unsplash.com/photo-1556742502-ec7c0e9f34b1?w=2000&q=80') center center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.hero-fullwidth::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(164, 210, 51, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title-huge {
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: #FFFFFF;
    margin-bottom: 32px;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hero-description-center {
    font-size: 24px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
}

.hero-actions-center {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-primary {
    background: #A4D233;
    color: #000000;
    box-shadow: 0 12px 40px rgba(164, 210, 51, 0.4);
}

.btn-hero-primary:hover {
    background: #8AB62A;
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(164, 210, 51, 0.5);
}

.btn-hero-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
}

/* Stats Section - 3 Key Benefits */
.problem-solution {
    padding: 120px 40px;
    background: #0A0B0F;
}

.problem-solution-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #A4D233;
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(164, 210, 51, 0.1);
    border: 1px solid rgba(164, 210, 51, 0.3);
    border-radius: 100px;
}

.section-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 64px;
}

.section-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    max-width: 800px;
    margin: 0 auto 64px;
}

/* VS Grid - Clean Card Layout */
.vs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.vs-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s ease;
}

.vs-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #A4D233;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(164, 210, 51, 0.2);
}

.vs-rate {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
}

.vs-rate.good {
    color: #A4D233;
}

.vs-desc {
    font-size: 20px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.vs-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

/* How It Works Section */
.equipment-section {
    padding: 120px 40px;
    background: #000000;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.equipment-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px 40px;
    transition: all 0.4s ease;
    position: relative;
}

.equipment-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #A4D233;
    transform: translateY(-8px);
}

.equipment-card.featured {
    border-color: #A4D233;
    background: rgba(164, 210, 51, 0.05);
}

.equipment-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #A4D233 0%, #8AB62A 100%);
    color: #000000;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 8px 24px;
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(164, 210, 51, 0.4);
}

.equipment-content {
    text-align: center;
}

.equipment-title {
    font-size: 28px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.equipment-rate {
    font-size: 16px;
    font-weight: 600;
    color: #A4D233;
    margin-bottom: 20px;
}

.equipment-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Icon Container */
.icon-container {
    width: 64px;
    height: 64px;
    background: rgba(164, 210, 51, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.icon-container svg {
    width: 32px;
    height: 32px;
}

/* Payment Timeline */
.payment-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Total Interest Box */
.total-interest-box {
    display: inline-block;
    background: rgba(164, 210, 51, 0.1);
    border: 2px solid #A4D233;
    border-radius: 12px;
    padding: 32px 64px;
    margin-top: 48px;
}

.total-interest-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.total-interest-amount {
    font-size: 64px;
    font-weight: 900;
    color: #A4D233;
    line-height: 1;
}

/* Benefits Grid - 2 Columns */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Use Cases Grid - Professional Icons */
.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.use-case-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px 32px;
    text-align: center;
    transition: all 0.4s ease;
}

.use-case-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #A4D233;
    transform: translateY(-8px);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: rgba(164, 210, 51, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.use-case-icon svg {
    width: 40px;
    height: 40px;
}

.use-case-title {
    font-size: 20px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.use-case-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Section */
.cta-section {
    padding: 140px 40px;
    background: linear-gradient(135deg, #000000 0%, #0A0B0F 100%);
    text-align: center;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #FFFFFF;
    margin-bottom: 32px;
}

.cta-subtitle {
    font-size: 22px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 100px 40px 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 120px;
    margin-bottom: 80px;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 48px;
    margin-bottom: 32px;
}

.footer-tagline {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #A4D233;
    margin-bottom: 12px;
}

.footer-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #A4D233;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: #A4D233;
    text-decoration: none;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title-huge {
        font-size: 64px;
    }
    
    .vs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .payment-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .hero-fullwidth {
        padding: 140px 24px 80px;
        background-attachment: scroll;
    }
    
    .hero-title-huge {
        font-size: 48px;
    }
    
    .hero-description-center {
        font-size: 18px;
    }
    
    .hero-actions-center {
        flex-direction: column;
    }
    
    .problem-solution {
        padding: 80px 24px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .vs-rate {
        font-size: 56px;
    }
    
    .equipment-section {
        padding: 80px 24px;
    }
    
    .payment-timeline {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .total-interest-box {
        padding: 24px 40px;
    }
    
    .total-interest-amount {
        font-size: 48px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-section {
        padding: 100px 24px;
    }
    
    .cta-title {
        font-size: 40px;
    }
    
    .cta-subtitle {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer {
        padding: 60px 24px 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}
