.landing-page {
    /* More vibrant, fresh fintech blue gradient matching the reference */
    background: linear-gradient(180deg, #4452ff 0%, #359dfc 45%, #e3fdf5 100%);
    min-height: 100vh;
    height: auto;
    position: relative;
    padding: 0 0 90px; /* Increased padding for bottom badges */
    overflow-x: hidden;
    overflow-y: auto;
    font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    display: flex;
    flex-direction: column;
}

/* Header/Hero Area */
.hero-section {
    padding: 28px 20px 130px;
    color: #fff;
    position: relative;
    text-align: center;
}

/* Brand Tag - Top Pill */
.brand-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.star-icon {
    color: #ffda44;
    margin-right: 6px;
    font-size: 16px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Main Title - Big & Bold */
.main-title {
    font-size: clamp(32px, 10vw, 48px);
    line-height: 1.15;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
    animation: titleFloat 3s ease-in-out infinite;
}

@keyframes titleFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

/* Interest Free Badge - Red Pill - Removed */

/* Mascot Duck - Simplified/Cleaned up - Removed */

/* Credit Card - The Main Focus */
.credit-card-container {
    padding: 0 20px;
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.credit-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 24px;
    padding: 36px 24px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(68, 82, 255, 0.2);
    position: relative;
    border: 1px solid rgba(68, 82, 255, 0.1);
    animation: cardFloat 4s ease-in-out infinite;
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.label {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

/* Badge inside card */
.boost-badge {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    color: #ff4d4f;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    border: 1px solid #ffd1d1;
    box-shadow: 0 2px 6px rgba(255, 77, 79, 0.15);
}

.boost-badge .stars {
    margin-left: 4px;
    font-size: 11px;
    color: #ff4d4f;
}

.amount {
    font-size: clamp(42px, 12vw, 68px);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-weight: 800;
    color: #1a1a1a;
    margin: 8px 0 20px;
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    white-space: nowrap; /* Prevent breaking on small screens */
}

.review-tag {
    background: linear-gradient(135deg, #f7f8fa 0%, #f0f2f5 100%);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 13px;
    color: #555;
    text-align: left;
    display: flex;
    align-items: center;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.tag-label {
    background: linear-gradient(135deg, #e0e4e9 0%, #d5d9dd 100%);
    color: #444;
    padding: 3px 8px;
    border-radius: 6px;
    margin-right: 8px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

/* Form Section */
.form-section {
    padding: 28px 20px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.submit-btn {
    width: 100%;
    height: 56px;
    border-radius: 28px;
    border: none;
    background: linear-gradient(135deg, #ff9500 0%, #ff5e00 100%);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(255, 94, 0, 0.35);
    margin-bottom: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 94, 0, 0.45);
}

.submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 94, 0, 0.35);
}

.submit-btn .btn-icon {
    font-size: 20px;
}

.agreement {
    font-size: 13px;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    line-height: 1.6;
}

.agreement input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.agreement a {
    color: #4452ff;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.agreement a:hover {
    color: #359dfc;
    text-decoration: underline;
}

/* Bottom Floating Badges */
.bottom-badge {
    position: fixed;
    bottom: 24px;
    font-size: 13px;
    font-weight: 700;
    z-index: 100;
}

/* Left badge: White pill */
.bottom-badge.left {
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: #ff4d4f;
    padding: 8px 16px;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 77, 79, 0.1);
}

.mascot-mini {
    margin-right: 6px;
    font-size: 18px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

/* Center badge: Gold/Yellow style */
.bottom-badge.center {
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fffce0 0%, #fff9d0 100%);
    color: #bfa100;
    border: 1px solid #f2e6a0;
    padding: 8px 24px;
    border-radius: 24px;
    box-shadow: 0 6px 20px rgba(191, 161, 0, 0.15);
    text-align: center;
    width: auto;
    white-space: nowrap;
    font-weight: 700;
}

@media (max-height: 720px) {
    .hero-section {
        padding: 18px 14px 96px;
    }
    .credit-card-container {
        margin-top: -70px;
    }
    .form-section {
        padding-top: 18px;
    }
    .amount {
        margin: 0 0 10px;
    }
}

@media (max-height: 640px) {
    .hero-section {
        padding: 14px 12px 80px;
    }
    .brand-tag {
        margin-bottom: 12px;
    }
    .main-title {
        margin-bottom: 10px;
    }
    .credit-card {
        padding: 22px 16px;
    }
    .form-section {
        padding-top: 14px;
    }
    .input-group {
        margin-bottom: 14px;
    }
}
