/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    margin: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.logo i {
    font-size: 28px;
    color: #00d4aa;
}

.trust-badges {
    display: flex;
    gap: 15px;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
    min-height: 80vh;
}

.hero-content {
    color: white;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: white;
    text-align: left;
}

.main-title .highlight {
    color: #00d4aa;
    text-shadow: 0 0 20px rgba(0, 212, 170, 0.5);
    font-weight: 800;
}

.subtitle {
    font-size: 2rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 20px;
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.feature i {
    color: #00d4aa;
    font-size: 1.2rem;
}

.cta-button {
    background: linear-gradient(45deg, #00d4aa, #00a8cc);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 170, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 170, 0.4);
}

.cta-button.large {
    padding: 22px 50px;
    font-size: 1.4rem;
}

.urgency-text {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: #000;
    border-radius: 40px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #00d4aa, #00a8cc);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.cash-app-interface {
    text-align: center;
}

.balance {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.balance-label {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 60px 0;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 40px 0;
}

.stat {
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00d4aa;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.how-it-works h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #00d4aa;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.step p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: #00d4aa;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

.final-cta .cta-button {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid #eee;
}

.modal-header h3 {
    color: #333;
    font-size: 1.5rem;
}

.modal-body {
    padding: 30px;
}

.locker-content {
    text-align: center;
}

.lock-icon {
    font-size: 4rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.locker-content h4 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.redirect-section {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #00d4aa;
}

.redirect-text {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.redirect-text i {
    color: #00d4aa;
    font-size: 1.1rem;
}

.unlock-btn {
    background: linear-gradient(45deg, #00d4aa, #00a8cc);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.unlock-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 212, 170, 0.3);
}

.unlock-btn:disabled {
    background: #ccc !important;
    color: #666 !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 0.6;
}

.unlock-btn:disabled:hover {
    transform: none !important;
    box-shadow: none !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero {
        gap: 40px;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 40px 0;
    }
    
    .main-title {
        font-size: 2.8rem;
    }
    
    .subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .phone-mockup {
        width: 280px;
        height: 560px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 30px 0;
        gap: 30px;
    }
    
    .main-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.2rem;
    }
    
    .cta-button.large {
        padding: 18px 40px;
        font-size: 1.3rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 0;
    }
    
    .header {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .how-it-works h2 {
        font-size: 2rem;
    }
    
    .testimonials h2 {
        font-size: 2rem;
    }
    
    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 20px 0;
        gap: 25px;
    }
    
    .main-title {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
    
    .cta-button.large {
        padding: 15px 30px;
        font-size: 1.2rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 15px;
    }
    
    .phone-screen {
        border-radius: 25px;
    }
    
    .balance {
        font-size: 2.2rem;
    }
    
    .balance-label {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .step {
        padding: 25px 20px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    .testimonial {
        padding: 20px;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 20px 20px 15px;
    }
    
    .modal-header h3 {
        font-size: 1.3rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .unlock-btn {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .redirect-section {
        padding: 15px;
    }
    
    .redirect-text {
        font-size: 0.9rem;
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 400px) {
    .main-title {
        font-size: 1.6rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .balance {
        font-size: 1.8rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 10px 20px;
    }
    
    .final-cta .cta-button {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}