/* SaaS Mockup Hero */
.saas-mockup-wrapper {
    position: relative;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

.saas-browser-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--border, #eef1f5);
}

.saas-browser-header {
    background: #fdfdfd;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eef1f5;
}

.saas-dots {
    display: flex;
    gap: 6px;
}

.saas-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.saas-dots .dot.red {
    background: #ff5f56;
}

.saas-dots .dot.yellow {
    background: #ffbd2e;
}

.saas-dots .dot.green {
    background: #27c93f;
}

.saas-url-bar {
    flex: 1;
    text-align: center;
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    margin: 0 40px;
    padding: 5px 0;
    border-radius: 6px;
}

.saas-browser-content {
    padding: 16px;
    background: #f8fafc;
}

.saas-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.saas-stat-card {
    background: white;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 14px 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.saas-stat-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.saas-stat-icon.blue-bg {
    background: rgba(7, 42, 200, 0.1);
}

.saas-stat-icon.red-bg {
    background: rgba(239, 68, 68, 0.1);
}

.saas-stat-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--blue-dark, #03045E);
    margin-bottom: 2px;
    line-height: 1;
}

.saas-stat-label {
    font-size: 12px;
    color: #6b7280;
}

.saas-table-section {
    background: white;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.saas-table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.saas-table-header h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-dark, #03045E);
    margin: 0;
}

.saas-table-header a {
    font-size: 12px;
    color: var(--blue, #072AC8);
    text-decoration: none;
    font-weight: 500;
}

.saas-table-list {
    display: flex;
    flex-direction: column;
}

.saas-table-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f3f4f6;
}

.saas-table-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.saas-table-item:first-child {
    padding-top: 0;
}

.saas-item-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.saas-avatar {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
}

.saas-item-info {
    display: flex;
    flex-direction: column;
}

.saas-item-info strong {
    font-size: 13px;
    color: var(--text, #141821);
    font-weight: 600;
}

.saas-item-info span {
    font-size: 12px;
    color: #64748b;
}

.saas-item-right {
    font-size: 13px;
    font-weight: 600;
}

.saas-item-right.blue-text {
    color: var(--blue, #072AC8);
}

.saas-floating-card {
    position: absolute;
    top: -20px;
    right: -20px;
    background: white;
    border-radius: 16px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: 1px solid #f1f5f9;
    animation: float 4s ease-in-out infinite;
}

.saas-floating-icon {
    width: 36px;
    height: 36px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.saas-floating-text {
    display: flex;
    flex-direction: column;
}

.saas-floating-text strong {
    font-size: 13px;
    color: var(--blue-dark, #03045E);
    font-weight: 700;
}

.saas-floating-text span {
    font-size: 11px;
    color: #64748b;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 768px) {
    .saas-floating-card {
        top: -10px;
        right: auto;
        left: 20px;
        transform: scale(0.9);
        animation: float-mobile 4s ease-in-out infinite;
    }

    @keyframes float-mobile {
        0% {
            transform: scale(0.9) translateY(0px);
        }

        50% {
            transform: scale(0.9) translateY(-8px);
        }

        100% {
            transform: scale(0.9) translateY(0px);
        }
    }

    .saas-stats-grid {
        grid-template-columns: 1fr;
    }
}