* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #9b0b62 0%, #c41e7f 50%, #9b0b62 100%);
    min-height: 600px;
    position: relative;
    padding: 60px 20px 100px;
    text-align: left;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.logo {
    color: white;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.hero-title {
    color: white;
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    max-width: 600px;
    margin-bottom: 60px;
}

.hero-title .highlight {
    font-weight: 700;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    max-width: 700px;
}

.badge {
    position: absolute;
    top: 10%;
    right: 15%;
    width: 120px;
    height: 120px;
    z-index: 3;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-hand {
    width: 100%;
    height: auto;
    display: block;
}

.cta-button {
    background: linear-gradient(135deg, #ff9800 0%, #f79910 100%);
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(247, 153, 16, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 153, 16, 0.5);
}

/* Benefits Section */
.benefits {
    background: #fafafb;
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    color: #b5aac1;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.highlight-blue {
    color: #5554f8;
    font-weight: 700;
}

.subtitle-gray {
    color: #b5aac1;
    font-weight: 300;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-title {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.benefit-desc {
    font-size: 14px;
    color: #333;
    font-weight: 400;
}

/* Visa Section */
.visa-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.visa-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.visa-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visa-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 2;
}

.visa-logo-container {
    margin-bottom: 40px;
}

.visa-logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.3));
}

.visa-title {
    color: white;
    font-size: 48px;
    font-weight: 300;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.visa-title strong {
    font-weight: 700;
}

/* Cashback Section */
.cashback-section {
    background: white;
    padding: 100px 20px;
    text-align: center;
}

.cashback-title {
    font-size: 48px;
    margin-bottom: 60px;
    line-height: 1.3;
}

.cashback-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.cashback-percentage {
    font-size: 180px;
    font-weight: 700;
    color: #5554f8;
    line-height: 1;
    margin-bottom: 20px;
}

.cashback-percentage .percent {
    font-size: 120px;
}

.cashback-desc {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.cashback-desc strong {
    font-weight: 700;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #5554f8 0%, #6b6aff 50%, #5554f8 100%);
    padding: 80px 20px 140px;
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 150px;
    background: #5554f8;
    clip-path: polygon(0 60%, 100% 20%, 100% 100%, 0 100%);
    z-index: 1;
}

.features-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.mobile-mockup {
    width: 350px;
    height: auto;
    flex-shrink: 0;
}

.features-text {
    color: white;
    text-align: left;
}

.features-title {
    font-size: 48px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.features-subtitle {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
}

/* Reviews Section */
.reviews-section {
    background: #5554f8;
    padding: 60px 20px;
    text-align: center;
    color: white;
}

.reviews-title {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 30px;
}

.reviews-title strong {
    font-weight: 700;
}

.stars {
    margin: 30px 0;
}

.stars img {
    width: 300px;
    height: auto;
}

.reviews-subtitle {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
}

.reviews-subtitle strong {
    font-weight: 700;
}

.reviews-facebook {
    font-size: 16px;
    font-weight: 300;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-size: 13px;
    line-height: 1.8;
    font-weight: 300;
}

.footer p {
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-image {
        width: 45%;
    }

    .hero-title {
        font-size: 44px;
    }

    .features-content {
        flex-direction: column;
        text-align: center;
    }

    .features-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 40px 20px 80px;
    }

    .hero-image {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0;
        top: 0;
        transform: none;
    }

    .hero-title {
        font-size: 36px;
        margin: 0 auto 40px;
    }

    .logo {
        font-size: 32px;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .cashback-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cashback-percentage {
        font-size: 120px;
    }

    .visa-title {
        font-size: 32px;
        padding: 0 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .features-title {
        font-size: 36px;
    }

    .mobile-mockup {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 28px;
    }

    .cta-button {
        font-size: 18px;
        padding: 15px 40px;
    }

    .cashback-percentage {
        font-size: 90px;
    }

    .cashback-percentage .percent {
        font-size: 70px;
    }
}
