/* About Section */
.about {
    padding: 4rem 0;
    background: #f8fafc;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    color: #64748b;
    font-weight: 500;
}

/* Applications Section */
.applications {
    padding: 4rem 0;
}

.applications h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.app-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.app-card {
    background: white;
    border-radius: 15px;
    padding: 3rem 0;
    box-shadow: none;
    text-decoration: none;
    color: inherit;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-card:hover {
    transform: none;
    box-shadow: none;
}

.app-card-content {
    padding: 0 2rem;
}

.app-screenshot {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.app-card.reverse {
    direction: rtl;
}

.app-card.reverse .app-card-content {
    direction: ltr;
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
}

.app-icon.fly { 
    background: linear-gradient(45deg, #ff6b6b, #ffa500); 
}

.app-icon.wordmate { 
    background: linear-gradient(45deg, #4ecdc4, #45b7d1); 
}

.app-icon.yoursms { 
    background: linear-gradient(45deg, #96ceb4, #ffeaa7); 
}

.app-icon.jedai { 
    background: linear-gradient(45deg, #a8e6cf, #dcedc8); 
}

.app-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.app-card p {
    color: #64748b;
    margin-bottom: 1rem;
}

.app-badge {
    display: inline-block;
    background: #e2e8f0;
    color: #64748b;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}