.dashboard-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 18px 14px;
}

.hero-panel {
    background: linear-gradient(135deg, #f7f9fc 0%, #eef3fb 100%);
    border: 1px solid #e8edf5;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    position: relative;
}

.hero-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    radial-gradient(circle at 12% 30%, rgba(41, 121, 255, 0.08), transparent 20%),
    radial-gradient(circle at 82% 20%, rgba(41, 121, 255, 0.07), transparent 26%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 24px;
    min-height: 420px;
    padding: 52px 56px;
}

.hero-eyebrow {
    margin: 0 0 8px;
    font-size: 2.1rem;
    font-weight: 700;
    color: #142b52;
}

.hero-title {
    margin: 0;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 0.98;
    font-weight: 800;
    color: #0f2447;
}

.hero-title span {
    color: #2b7cff;
}

.hero-description {
    margin: 28px 0 26px;
    max-width: 560px;
    font-size: 1.6rem;
    line-height: 1.65;
    color: #465b7d;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #e7f3e7;
    color: #236a23;
    font-weight: 500;
    font-size: 0.98rem;
}

.hero-badge-icon {
    font-size: 0.85rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual img {
    max-width: 100%;
    opacity: 0.5;
    width: 450px;
}

.apps-panel {
    background: #ffffff;
    border: 1px solid #e8edf5;
    border-top: none;
    border-radius: 0 0 24px 24px;
    padding: 34px 34px 42px;
    box-shadow: 0 10px 35px rgba(15, 36, 71, 0.04);
}

.apps-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.apps-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: #152b52;
}

.apps-title-line {
    width: 56px;
    height: 3px;
    margin-top: 10px;
    border-radius: 999px;
    background: #2b7cff;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
}

.app-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 245px;
    padding: 24px 22px 20px;
    border-radius: 22px;
    border: 1px solid #edf1f6;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 6px 22px rgba(16, 41, 77, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.app-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(16, 41, 77, 0.12);
    border-color: #dbe6f6;
}

.app-icon-circle {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    margin-bottom: 16px;
    background: linear-gradient(180deg, #f3f7fc 0%, #eef2f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-icon-circle img {
    max-width: 52px;
    max-height: 52px;
    object-fit: contain;
}

.app-name {
    margin: 0 0 12px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #13284c;
}

.app-desc {
    margin: 0;
    color: #6a7b95;
    font-size: 1rem;
    line-height: 1.55;
    max-width: 220px;
}

.app-arrow {
    margin-top: auto;
    padding-top: 14px;
    font-size: 1.6rem;
    line-height: 1;
    color: #13284c;
}

@media (max-width: 1024px) {
    .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 28px;
    min-height: auto;
    }

    .hero-description {
    margin-left: auto;
    margin-right: auto;
    }

    .apps-header {
    flex-direction: column;
    align-items: stretch;
    }

    .apps-search {
    max-width: 100%;
    }
}

@media (max-width: 640px) {
    .dashboard-main {
    padding: 12px;
    }

    .hero-panel {
    border-radius: 18px 18px 0 0;
    }

    .apps-panel {
    border-radius: 0 0 18px 18px;
    padding: 24px 20px 28px;
    }

    .hero-title {
    font-size: 2.5rem;
    }

    .apps-title {
    font-size: 1.55rem;
    }

    .app-card {
    min-height: 290px;
    padding: 24px 18px 20px;
    }
}