/* ---------------------------
   Use Web App Page Styles Only
-----------------------------*/

.webapp-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
}

.webapp-hero {
    text-align: center;
    padding: 20px;
    margin-bottom: 60px;
}

.webapp-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #222;
}

.webapp-hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.webapp-cta {
    background: #4A3AE3;
    padding: 14px 34px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s ease;
}

.webapp-cta:hover {
    background: #3a2ec0;
}

/* GRID */
.webapp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.webapp-card {
    background: #f8f8ff;
    border: 1px solid #e4e4f5;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.06);
}

.webapp-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.webapp-card p {
    color: #555;
    line-height: 1.6;
    font-size: 16px;
}
