/* App Page Specific Styles */

.app-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 30px 20px;
}

.app-page {
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
}

/* Hero Section */
.app-hero {
    text-align: center;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-pulse {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.app-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 50px;
    line-height: 1.6;
}

/* Phone Mockup */
.phone-mockup {
    margin: 60px auto;
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border-radius: 40px;
    padding: 15px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #111827;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
}

.app-demo {
    padding: 40px 20px 20px;
    height: 100%;
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 100%);
}

.demo-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #333;
    margin-bottom: 40px;
}

.demo-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.demo-content > p {
    font-size: 16px;
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 600;
}

.demo-feature {
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
}

.demo-feature .feature-icon {
    font-size: 32px;
}

.demo-feature p {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

/* Features Grid */
.features-grid {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--text-dark);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Platforms Section */
.platforms {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 30px;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.platforms h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.platform-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    background: var(--text-dark);
    color: white;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.platform-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.platform-badge div {
    text-align: left;
}

.platform-badge small {
    display: block;
    font-size: 12px;
    opacity: 0.8;
}

.platform-badge strong {
    display: block;
    font-size: 20px;
    font-weight: 700;
}

.launch-date {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 30px;
}

/* Newsletter Section */
.newsletter {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.newsletter > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.newsletter-form button {
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.form-note {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 768px) {
    .app-hero h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .phone-mockup {
        width: 250px;
        height: 500px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .platform-badges {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 100%;
    }
}


