* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.3; }
    100% { transform: scale(1.1); opacity: 0.1; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero .problem-highlight {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    border: 2px solid rgba(255,255,255,0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3em;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    animation: bounce 2s infinite;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(238, 90, 36, 0.6);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.stats-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3em;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2em;
    color: #666;
}

.features-section {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.feature-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: bold;
}

.app-preview {
    background: #1a1a1a;
    padding: 80px 0;
    text-align: center;
    color: white;
}

.app-preview h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.app-screenshots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.app-screenshot-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.app-screenshot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.app-screenshot-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.app-screenshot-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-highlights {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.highlight-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
}

.screenshot-placeholder {
    background: linear-gradient(135deg, #667eea, #764ba2);
    height: 400px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    border: 3px dashed rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.screenshot-placeholder:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.urgency-section {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.urgency-content {
    background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 20px;
    margin: 30px 0;
}

.countdown-timer {
    font-size: 2em;
    font-weight: bold;
    margin: 20px 0;
}

.signup-section {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.signup-form {
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    background: rgba(255,255,255,0.9);
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.testimonial-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-badge {
    background: linear-gradient(45deg, #27ae60, #2ecc71);
    color: white;
    padding: 20px;
    border-radius: 50px;
    display: inline-block;
    margin: 20px 0;
    font-weight: bold;
    font-size: 1.2em;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(39, 174, 96, 0.5); }
    to { box-shadow: 0 0 30px rgba(39, 174, 96, 0.8); }
}

.mobile-responsive {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5em;
    }
    
    .hero .subtitle {
        font-size: 1.2em;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .app-screenshots {
        grid-template-columns: 1fr;
    }
}

.floating-elements {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.floating-cta {
    background: #ff6b6b;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    animation: pulse-float 3s ease-in-out infinite;
}

@keyframes pulse-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.social-proof {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 40px 0;
    opacity: 0.6;
}

.logo-placeholder {
    background: #f0f0f0;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: bold;
}

.refresh-captcha-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    padding: 8px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9em;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.refresh-captcha-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

#captcha-question {
    font-weight: bold;
    color: #ff6b6b;
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 5px;
}

.captcha-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-error {
    color: #ff6b6b;
    font-size: 0.9em;
    margin-top: 5px;
    display: none;
}

.form-success {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid rgba(39, 174, 96, 0.3);
    display: none;
}

.form-error {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    display: none;
}