/* ================================
   WEB DESIGN PAGE ONLY
================================ */

.webdesign-body {
    background: linear-gradient(180deg, #eef4ff 0%, #f7f9fc 45%, #eef2f7 100%);
}

.webdesign-shell {
    max-width: 1150px;
    margin: 0 auto;
    padding: 40px 20px 70px;
}

.webdesign-back-button {
    position: fixed;
    top: 14px;
    left: 18px;
    z-index: 2000;
    background: rgba(15, 23, 42, 0.92);
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    transition: background 0.25s ease, transform 0.25s ease;
}


.webdesign-back-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.webdesign-greeting {
    position: fixed;
    top: 14px;
    right: 18px;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.95);
    color: #0f172a;
    padding: 10px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    font-size: 0.9rem;
    font-weight: 600;
}


.webdesign-hero {
    background: #ffffff;
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.10);
    margin-bottom: 32px;
}

.webdesign-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
}

.webdesign-hero h1 {
    font-size: 3rem;
    line-height: 1.05;
    color: #0f172a;
    margin-bottom: 10px;
}

.webdesign-hero h2 {
    font-size: 1.35rem;
    color: #2563eb;
    margin-bottom: 18px;
    font-weight: 700;
}

.webdesign-lead {
    font-size: 1.08rem;
    color: #475569;
    max-width: 760px;
}

.webdesign-section {
    margin-top: 34px;
}

.webdesign-section-heading {
    margin-bottom: 18px;
}

.webdesign-section-label {
    color: #2563eb;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    font-size: 0.8rem;
    margin-bottom: 4px;
}

.webdesign-section-heading h2 {
    font-size: 2rem;
    color: #0f172a;
}

.webdesign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.webdesign-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    min-height: 240px;
}

.webdesign-card-type {
    color: #2563eb;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.webdesign-card h3 {
    font-size: 1.25rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.webdesign-card p {
    color: #475569;
    margin-bottom: 20px;
}

.webdesign-card-link {
    margin-top: auto;
    align-self: flex-start;
    text-decoration: none;
    font-weight: 700;
    color: #2563eb;
    background: #eff6ff;
    padding: 10px 14px;
    border-radius: 10px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.webdesign-card-link:hover {
    background: #dbeafe;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .webdesign-shell {
        padding: 30px 14px 50px;
    }

    .webdesign-hero {
        padding: 24px;
        border-radius: 18px;
        text-align: center;
    }

    .webdesign-hero h1 {
        font-size: 2.2rem;
    }

    .webdesign-hero h2 {
        font-size: 1.1rem;
    }

    .webdesign-grid {
        grid-template-columns: 1fr;
    }

    .webdesign-back-button,
    .webdesign-greeting {
        position: static;
        display: inline-block;
        margin: 12px 10px 0;
    }

    .webdesign-body {
        text-align: center;
    }
}