.dashboard-section {
    position: relative;
    padding: 140px 40px;
    background: #fff;
    overflow: hidden;
}

.dashboard-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.dashboard-header {
    max-width: 800px;
    margin: 0 auto 75px;
    text-align: center;
}

.dashboard-header .section-label {
    display: inline-block;
    margin-bottom: 18px;
    color: #888;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
}

.dashboard-header h2 {
    margin: 0;
    color: #111;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.06;
    letter-spacing: -3px;
    font-weight: 600;
}

.dashboard-header p {
    max-width: 680px;
    margin: 25px auto 0;
    color: #777;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.dashboard-showcase {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.dashboard-browser {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dedede;
    border-radius: 20px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .12), 0 10px 30px rgba(0, 0, 0, .05);
}

.dashboard-browser-header {
    height: 46px;
    display: flex;
    align-items: center;
    padding: 0 18px;
    background: #fafafa;
    border-bottom: 1px solid #e8e8e8;
}

.dashboard-browser-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dashboard-browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d3d3d3;
}

.dashboard-browser-address {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 70px;
    border-radius: 7px;
    background: #f0f0f0;
    color: #999;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    white-space: nowrap;
}

.dashboard-image {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.dashboard-image img {
    display: block;
    width: 100%;
    height: auto;
}

.dashboard-footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.dashboard-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.dashboard-feature>i {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #f5f5f5;
    color: #111;
    font-size: 15px;
}

.dashboard-feature div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dashboard-feature strong {
    color: #111;
    font-size: 14px;
    font-weight: 600;
}

.dashboard-feature span {
    color: #888;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    line-height: 1.5;
}

@media(max-width:900px) {
    .dashboard-section {
        padding: 100px 24px;
    }

    .dashboard-header {
        margin-bottom: 55px;
    }

    .dashboard-header h2 {
        font-size: 44px;
        letter-spacing: -2px;
    }

    .dashboard-footer {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
        margin-top: 45px;
    }
}

@media(max-width:600px) {
    .dashboard-section {
        padding: 80px 20px;
    }

    .dashboard-header {
        margin-bottom: 40px;
    }

    .dashboard-header h2 {
        font-size: 38px;
        letter-spacing: -1.8px;
    }

    .dashboard-header p {
        font-size: 14px;
    }

    .dashboard-browser {
        border-radius: 14px;
    }

    .dashboard-browser-header {
        height: 38px;
        padding: 0 12px;
    }

    .dashboard-browser-address {
        display: none;
    }

    .dashboard-footer {
        gap: 20px;
    }

    .dashboard-feature {
        gap: 12px;
    }
}