/* 29sec Specific Styles */

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    object-fit: contain;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 4rem 0 6rem 0;
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.cta-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 6rem 0;
    padding: 3rem 2rem;
    background-color: #fafafa;
    border-radius: 12px;
}

.feature-item {
    padding: 2rem;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #e0e0e0;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer Links */
.footer-links {
    margin-top: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .app-icon {
        width: 100px;
        height: 100px;
    }

    .hero-content {
        margin: 2rem 0 4rem 0;
    }

    .features {
        grid-template-columns: 1fr;
        margin: 4rem 0;
        padding: 2rem 1rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}
